|
| 1 | +# PraisonAI Tool Registration Examples |
| 2 | + |
| 3 | +This document demonstrates the three different ways to register tool functions in PraisonAI. |
| 4 | + |
| 5 | +## Method 1: Using the `tools` array with function objects directly |
| 6 | + |
| 7 | +```typescript |
| 8 | +import { Agent } from 'praisonai'; |
| 9 | + |
| 10 | +// Define the functions directly |
| 11 | +async function getWeather(location: string) { |
| 12 | + console.log(`Getting weather for ${location}...`); |
| 13 | + return `${Math.floor(Math.random() * 30)}°C`; |
| 14 | +} |
| 15 | + |
| 16 | +async function getTime(location: string) { |
| 17 | + console.log(`Getting time for ${location}...`); |
| 18 | + const now = new Date(); |
| 19 | + return `${now.getHours()}:${now.getMinutes()}`; |
| 20 | +} |
| 21 | + |
| 22 | +// Create an agent with directly registered functions |
| 23 | +const agent = new Agent({ |
| 24 | + instructions: `You provide the current weather and time for requested locations.`, |
| 25 | + name: "DirectFunctionAgent", |
| 26 | + // Register functions directly as an array |
| 27 | + tools: [getWeather, getTime] |
| 28 | +}); |
| 29 | + |
| 30 | +// Start the agent with a prompt that will trigger tool usage |
| 31 | +agent.start("What's the weather and time in Paris, France?"); |
| 32 | +``` |
| 33 | + |
| 34 | +## Method 2: Using the `toolFunctions` object with name-function pairs |
| 35 | + |
| 36 | +```typescript |
| 37 | +import { Agent } from 'praisonai'; |
| 38 | + |
| 39 | +// Define the functions directly |
| 40 | +async function getWeather(location: string) { |
| 41 | + console.log(`Getting weather for ${location}...`); |
| 42 | + return `${Math.floor(Math.random() * 30)}°C`; |
| 43 | +} |
| 44 | + |
| 45 | +async function getTime(location: string) { |
| 46 | + console.log(`Getting time for ${location}...`); |
| 47 | + const now = new Date(); |
| 48 | + return `${now.getHours()}:${now.getMinutes()}`; |
| 49 | +} |
| 50 | + |
| 51 | +// Create an agent with directly registered functions |
| 52 | +const agent = new Agent({ |
| 53 | + instructions: `You provide the current weather and time for requested locations.`, |
| 54 | + name: "DirectFunctionAgent", |
| 55 | + // Register functions with custom names |
| 56 | + toolFunctions: { |
| 57 | + get_weather: getWeather, |
| 58 | + get_time: getTime |
| 59 | + } |
| 60 | +}); |
| 61 | + |
| 62 | +// Start the agent with a prompt that will trigger tool usage |
| 63 | +agent.start("What's the weather and time in Paris, France?"); |
| 64 | +``` |
| 65 | + |
| 66 | +## Method 3: Using the `tools` array with pre-defined tool definitions |
| 67 | + |
| 68 | +```typescript |
| 69 | +import { Agent } from 'praisonai'; |
| 70 | + |
| 71 | +// Define the functions |
| 72 | +async function getWeather(location: string) { |
| 73 | + console.log(`Getting weather for ${location}...`); |
| 74 | + return `${Math.floor(Math.random() * 30)}°C`; |
| 75 | +} |
| 76 | + |
| 77 | +async function getTime(location: string) { |
| 78 | + console.log(`Getting time for ${location}...`); |
| 79 | + const now = new Date(); |
| 80 | + return `${now.getHours()}:${now.getMinutes()}`; |
| 81 | +} |
| 82 | + |
| 83 | +// Register functions globally |
| 84 | +import { registerFunction } from 'praisonai'; |
| 85 | +registerFunction('get_weather', getWeather); |
| 86 | +registerFunction('get_time', getTime); |
| 87 | + |
| 88 | +// Define tool definitions |
| 89 | +const weatherTool = { |
| 90 | + type: "function", |
| 91 | + function: { |
| 92 | + name: "get_weather", |
| 93 | + description: "Get the current weather for a location", |
| 94 | + parameters: { |
| 95 | + type: "object", |
| 96 | + properties: { |
| 97 | + location: { |
| 98 | + type: "string", |
| 99 | + description: "The location to get weather for" |
| 100 | + } |
| 101 | + }, |
| 102 | + required: ["location"] |
| 103 | + } |
| 104 | + } |
| 105 | +}; |
| 106 | + |
| 107 | +const timeTool = { |
| 108 | + type: "function", |
| 109 | + function: { |
| 110 | + name: "get_time", |
| 111 | + description: "Get the current time for a location", |
| 112 | + parameters: { |
| 113 | + type: "object", |
| 114 | + properties: { |
| 115 | + location: { |
| 116 | + type: "string", |
| 117 | + description: "The location to get time for" |
| 118 | + } |
| 119 | + }, |
| 120 | + required: ["location"] |
| 121 | + } |
| 122 | + } |
| 123 | +}; |
| 124 | + |
| 125 | +// Create an agent with pre-defined tool definitions |
| 126 | +const agent = new Agent({ |
| 127 | + instructions: `You provide the current weather and time for requested locations.`, |
| 128 | + name: "ToolDefinitionAgent", |
| 129 | + // Register pre-defined tool definitions |
| 130 | + tools: [weatherTool, timeTool] |
| 131 | +}); |
| 132 | + |
| 133 | +// Start the agent with a prompt that will trigger tool usage |
| 134 | +agent.start("What's the weather and time in Paris, France?"); |
| 135 | +``` |
| 136 | + |
| 137 | +## Combined Approach |
| 138 | + |
| 139 | +You can also combine these approaches as needed: |
| 140 | + |
| 141 | +```typescript |
| 142 | +import { Agent } from 'praisonai'; |
| 143 | + |
| 144 | +// Define the functions |
| 145 | +async function getWeather(location: string) { |
| 146 | + console.log(`Getting weather for ${location}...`); |
| 147 | + return `${Math.floor(Math.random() * 30)}°C`; |
| 148 | +} |
| 149 | + |
| 150 | +async function getTime(location: string) { |
| 151 | + console.log(`Getting time for ${location}...`); |
| 152 | + const now = new Date(); |
| 153 | + return `${now.getHours()}:${now.getMinutes()}`; |
| 154 | +} |
| 155 | + |
| 156 | +// Define a custom tool definition |
| 157 | +const calculatorTool = { |
| 158 | + type: "function", |
| 159 | + function: { |
| 160 | + name: "calculate", |
| 161 | + description: "Perform a calculation", |
| 162 | + parameters: { |
| 163 | + type: "object", |
| 164 | + properties: { |
| 165 | + expression: { |
| 166 | + type: "string", |
| 167 | + description: "The mathematical expression to calculate" |
| 168 | + } |
| 169 | + }, |
| 170 | + required: ["expression"] |
| 171 | + } |
| 172 | + } |
| 173 | +}; |
| 174 | + |
| 175 | +// Register the calculator function globally |
| 176 | +import { registerFunction } from 'praisonai'; |
| 177 | +registerFunction('calculate', async (expression: string) => { |
| 178 | + console.log(`Calculating ${expression}...`); |
| 179 | + // Simple eval for demonstration purposes only |
| 180 | + return eval(expression).toString(); |
| 181 | +}); |
| 182 | + |
| 183 | +// Create an agent with mixed tool registration approaches |
| 184 | +const agent = new Agent({ |
| 185 | + instructions: `You can provide weather, time, and perform calculations.`, |
| 186 | + name: "MixedToolAgent", |
| 187 | + // Register functions directly as an array |
| 188 | + tools: [getWeather, getTime, calculatorTool] |
| 189 | +}); |
| 190 | + |
| 191 | +// Start the agent with a prompt that will trigger tool usage |
| 192 | +agent.start("What's the weather in Paris, the time in Tokyo, and what is 25 * 4?"); |
| 193 | +``` |
0 commit comments