An AI assistant.

interface Assistant {
    assistantId: string;
    data: AssistantData;
    name: string;
    status: AssistantStatus;
    systemPrompt: string;
}

Properties

assistantId: string

The unique identifier of this assistant.

The data of the assistant.

name: string

The name of the assistant.

Is this assistant currently enabled.

systemPrompt: string

The system prompt of this assistant.