This interface defines the structure of an AI Execution Context object.
export interface AiExecutionContext {
    id?: string;
    agent_id?: string;
    workflow_id?: string;
    user_id?: string;
    session_id?: string;
    context?: any;
    created_at?: string;
}

Properties

  • id (string, optional): The unique identifier of the execution context.
  • agent_id (string, optional): The ID of the AI agent associated with this context.
  • workflow_id (string, optional): The ID of the AI workflow associated with this context.
  • user_id (string, optional): The ID of the user associated with this context.
  • session_id (string, optional): The session ID associated with this context.
  • context (any, optional): Additional context data for the execution.
  • created_at (string, optional): The timestamp when the execution context was created.