Interface CreateAssistantRequest

interface CreateAssistantRequest {
    data: AssistantData;
    name: string;
    status?: AssistantStatus;
    systemPrompt: string;
}

Hierarchy (View Summary)

Properties

The data to use.

name: string

The name to use.

The status of the created assistant.

systemPrompt: string

The system prompt to use.