Interface AgentConversationAPIRequestBody

interface AgentConversationAPIRequestBody {
    appConfig?: Record<string, any>;
    content: AgentRequestContent<Record<string, any>>;
    stream?: boolean;
}

Properties

appConfig?: Record<string, any>
content: AgentRequestContent<Record<string, any>>
stream?: boolean