ToolCallStartingContext
data class ToolCallStartingContext(val eventId: String, val executionInfo: AgentExecutionInfo, val context: AIAgentContext, val runId: String, val toolCallId: String?, val toolName: String, val toolDescription: String?, val toolArgs: JSONObject) : ToolCallEventContext(source)
Represents the context for handling a tool call event.
Constructors
Link copied to clipboard
constructor(eventId: String, executionInfo: AgentExecutionInfo, context: AIAgentContext, runId: String, toolCallId: String?, toolName: String, toolDescription: String?, toolArgs: JSONObject)
Properties
Link copied to clipboard
context The agent context associated with the tool call.
Link copied to clipboard
Represents the specific type of event handled within the event handler context, categorizing the nature of agent-related or strategy-related events.
Link copied to clipboard
The execution information containing parentId and current execution path;
Link copied to clipboard
toolCallId The unique identifier for this tool call.
Link copied to clipboard
toolDescription A description of the tool being executed.