Interface UpdateAssistantRequest

interface UpdateAssistantRequest {
    assistantId: string;
    name?: string;
    status?: AssistantStatus;
    systemPrompt?: string;
}

Hierarchy (View Summary)

Properties

assistantId: string

The identifier of the assistant we wish to update the attributes for.

name?: string

The new name of the assistant.

The new status of the assistant.

systemPrompt?: string

The new system promt to set on the assistant.