Skip to main content

AI Agent V2 Node

warning

This node is in beta and may not be fully tested or documented. Use with caution.

Predicts text using a Language Model

Properties

LabelPropertyTypeDescriptionDefault ValueIs Required
Function ConfigurationfunctionConfigbotdojo/types/kitchen_sinkObject
Max IterationsmaxIterationsbotdojo/types/numberAgent will stop after this many iterations. Each iteration the agent can invoke one or more tools.10
Warning Threshold IterationwarningThresholdIterationbotdojo/types/numberIf the number of iterations exceeds this threshold, the warning message will be passed as an assitant message to the LLM. This is used to nudge the LLM to finish the response.null
Warning Threshold MessagewarningThresholdMessagebotdojo/types/stringOptional. When the number of iterations exceeds the warning threshold, the warning message will be passed as an assitant message to the LLM.null
Use Parallel Tool CallinguseParallelToolCallingbotdojo/types/booleanWhen enabled, the agent will call tools in parallel if the model supports it. This can speed up the response time of the agent.true
Show StepsshowStepsToUserbotdojo/types/booleanWhen enabled, the tool calls will be shown to the user.true
Hide Step DetailshideStepDetailsbotdojo/types/booleanWhen enabled, the inputs and outputs of tool calls will be hidden from the user. The step name will still be shown.false
Disable Final Output MessagedisableFinalOutputMessagebotdojo/types/booleanBy default, if the LLM finishes without calling the final_output tool, it will be prompted to call it. When enabled, this setting disables that prompt and results in an error instead. Only applies when the agent needs to return JSON output rather than a single text response.false
Custom Final Output MessagecustomFinalOutputMessagebotdojo/types/stringOverride the default final output message prompt. default : 'You must call the final_output tool to complete the response.'null
Final Output Prompt TriesfinalOutputPromptTriesbotdojo/types/numberDefaults to 3. When the Output is not a single string, The agent needs to call the final_output tool to return the JSON. This setting controls how many times the agent will attempt to call the final_output tool before giving up.3
Validate Output with ToolenableValidatorToolbotdojo/types/booleanThis will add a 'Validator Tool' input to this agent that determins if the agent is done. The tool must take the output of this agent as is inputs and return { success: true, message: 'The output is valid' } if it is valid, or { success: false, message: 'The output is invalid' } if it is invalid.null
Validate Output TriesvalidateOutputTriesbotdojo/types/numberNumber of unsuccesful calls to the 'Validator Tool' before throwing an error. Only applies when Validate Output with Tool is enabled. Defaults to 3.3

Output

LabelPropertyTypeDescriptionDefault Value
Outputoutputbotdojo/types/dataOutputnull