We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da5064c commit 18c5185Copy full SHA for 18c5185
1 file changed
‎apps/baseai.dev/content/docs/api-reference/pipe-run.mdx‎
@@ -106,6 +106,7 @@ The BaseAI core package provides a `pipe.run()` function that you can use in you
106
role: 'user' | 'assistant' | 'system'| 'tool';
107
content: string | null;
108
name?: string;
109
+ runTools?: boolean;
110
tool_call_id?: string;
111
tool_calls?: ToolCall[];
112
}
@@ -123,6 +124,9 @@ The BaseAI core package provides a `pipe.run()` function that you can use in you
123
124
<Property name="name" type="string">
125
The name of the tool called by LLM
126
</Property>
127
+ <Property name="runTools" type="boolean">
128
+ Enable if you want BaseAI to automically run tools.
129
+ </Property>
130
<Property name="tool_call_id" type="string">
131
The id of the tool called by LLM
132
0 commit comments