Interface UpdateAssistantCommandInput

The input for UpdateAssistantCommand.

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

Hierarchy (View Summary)

Properties

assistantId: string

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

features?: "ACCESS_TO_PAGE"[]

The features that the assistant should have access to.

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.