Interface CreateAssistantCommandInput

The input for CreateAssistantCommand.

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

Hierarchy (View Summary)

Properties

The data to use.

features?: "ACCESS_TO_PAGE"[]

The features that the assistant should have access to.

name: string

The name to use.

The status of the created assistant.

systemPrompt: string

The system prompt to use.