An AI assistant.

interface Assistant {
    assistantId: string;
    data: AssistantData;
    features?: "ACCESS_TO_PAGE"[];
    name: string;
    status: AssistantStatus;
    systemPrompt?: string;
}

Properties

assistantId: string

The unique identifier of this assistant.

The data of the assistant.

features?: "ACCESS_TO_PAGE"[]

The enables features for the assistant.

name: string

The name of the assistant.

Is this assistant currently enabled.

systemPrompt?: string

The system prompt of this assistant.