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
-**required_variables** (<code>list\[str\] | Literal['\*'] | None</code>) – Lists the variables that must be provided as inputs to `user_prompt` or `system_prompt`.
201
200
If a required variable is not provided at run time, an exception is raised.
202
-
If set to `"*"`, all variables found in the prompts are required. Optional.
201
+
If set to `"*"`, all variables found in the prompts are required. Defaults to `"*"`.
202
+
Set to `None` to make all variables optional; missing ones render as empty strings.
203
203
-**exit_conditions** (<code>list\[str\] | None</code>) – List of conditions that will cause the agent to return.
204
204
Can include "text" if the agent should return when it generates a message without tool calls,
205
205
or tool names that will cause the agent to return once the tool was executed. Defaults to ["text"].
0 commit comments