You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| name | string |`""`| The name of the tool. Optional only on the first tool if there are multiple tools defined. |
258
-
| description | string |`""`| A brief description of what the tool does, this is important for explaining to the LLM when it should be used. |
259
-
| tools | array |`[]`| An array of tools that the current tool might depend on or use. |
260
-
| maxTokens | number/undefined |`undefined`| The maximum number of tokens to be used. Prefer `undefined` for uninitialized or optional values. |
261
-
| model | string |`""`| The model that the tool uses, if applicable. |
262
-
|cache | boolean |`true`| Whether caching is enabled for the tool. |
263
-
| temperature | number/undefined |`undefined`| The temperature setting for the model, affecting randomness. `undefined` for default behavior. |
264
-
| args | object |`{}`| Additional arguments specific to the tool, described by key-value pairs. |
265
-
| internalPrompt | boolean |`false`| An internal prompt used by the tool, if any. |
266
-
| instructions | string |`""`| Instructions on how to use the tool. |
267
-
| jsonResponse | boolean |`false`| Whether the tool returns a JSON response instead of plain text. You must include the word 'json' in the body of the prompt |
| name | string |`""`| The name of the tool. Optional only on the first tool if there are multiple tools defined. |
258
+
| description | string |`""`| A brief description of what the tool does, this is important for explaining to the LLM when it should be used. |
259
+
| tools | array |`[]`| An array of tools that the current tool might depend on or use. |
260
+
| maxTokens | number/undefined |`undefined`| The maximum number of tokens to be used. Prefer `undefined` for uninitialized or optional values. |
261
+
| model | string |`""`| The model that the tool uses, if applicable. |
262
+
|disableCache| boolean |`true`| Whether caching is enabled for the tool. |
263
+
| temperature | number/undefined |`undefined`| The temperature setting for the model, affecting randomness. `undefined` for default behavior. |
264
+
| args | object |`{}`| Additional arguments specific to the tool, described by key-value pairs. |
265
+
| internalPrompt | boolean |`false`| An internal prompt used by the tool, if any. |
266
+
| instructions | string |`""`| Instructions on how to use the tool. |
267
+
| jsonResponse | boolean |`false`| Whether the tool returns a JSON response instead of plain text. You must include the word 'json' in the body of the prompt |
0 commit comments