AGiXT is a dynamic AI Agent Automation Platform that seamlessly orchestrates instruction management and complex task execution across diverse AI providers. Combining adaptive memory, smart features, and a versatile plugin system, AGiXT delivers efficient and comprehensive AI solutions.
Add agent modes to for additional Chat Completions endpoint functionality
Agent default modes
Changes the behavior of the chat completions endpoint when interacting with the agent to either use a prompt template, command, or chain depending on the agent settings.
Agent setting mode can be prompt, command, or chain in the agent's settings.
If an agent mode is not defined, the chat completions endpoint will use the Chat prompt template.
prompt mode
Executes the designated prompt template when interacted with on the chat completions endpoint.
Requires prompt_name and prompt_category to also be defined in the agent settings.
Will use the user_input variable in prompt templates to inject the user's input from their message content.
command mode
Executes the designated command when interacted with on the chat completions endpoint.
Requires command_name, command_args, and command_variable to be defined in the agent settings.
command_variable is the command to inject the message content into for the command arguments.
chain mode
Executes the designated chain when interacted with on the chat completions endpoint.
Requires chain_name, chain_args to be defined in the agent settings.
Message content will be injected into the user_input for running the chain.
Add agent modes to for additional Chat Completions endpoint functionality
Agent default modes
Changes the behavior of the chat completions endpoint when interacting with the agent to either use a prompt template, command, or chain depending on the agent settings.
mode
can beprompt
,command
, orchain
in the agent's settings.Chat
prompt template.prompt
modeExecutes the designated prompt template when interacted with on the chat completions endpoint.
prompt_name
andprompt_category
to also be defined in the agent settings.user_input
variable in prompt templates to inject the user's input from their message content.command
modeExecutes the designated command when interacted with on the chat completions endpoint.
command_name
,command_args
, andcommand_variable
to be defined in the agent settings.command_variable
is the command to inject the message content into for the command arguments.chain
modeExecutes the designated chain when interacted with on the chat completions endpoint.
chain_name
,chain_args
to be defined in the agent settings.user_input
for running the chain.