This interface defines the structure of the request body used when creating a new AI Execution Context.
export interface CreateAiExecutionContextRequest {
    agent_id: string;
    workflow_id?: string;
    user_id?: string;
    session_id?: string;
    context?: any;
}

Properties

  • agent_id (string): The ID of the AI agent for this execution context.
  • workflow_id (string, optional): The ID of the AI workflow for this execution context.
  • user_id (string, optional): The ID of the user associated with this execution context.
  • session_id (string, optional): The session ID associated with this execution context.
  • context (any, optional): Additional context data for the execution.