AIAgentEnvironmentToAgentInitializeMessage
data class AIAgentEnvironmentToAgentInitializeMessage(val content: AIAgentEnvironmentInitializeMessageContent, val toolsForStages: Map<String, List<ToolDescriptor>>, val agent: AIAgentStrategy) : EnvironmentInitializeToAgentMessage(source)
Represents a message sent from the AI agent environment to initialize the agent with necessary configurations, tools, and strategy information.
Constructors
Link copied to clipboard
constructor(content: AIAgentEnvironmentInitializeMessageContent, toolsForStages: Map<String, List<ToolDescriptor>>, agent: AIAgentStrategy)
Properties
Link copied to clipboard
The strategy or behavior implementation that the AI agent will use.
Link copied to clipboard
The initialization content containing agent-specific details, configuration, and metadata.
Link copied to clipboard
A mapping of stage identifiers to the list of tool descriptors available for each stage.