Interface CreateAssistantConversationCommandInput

interface CreateAssistantConversationCommandInput {
    assistantId: string;
    initialMessage?: AssistantMessageUserContent;
    owner: string;
    title?: string;
}

Hierarchy (View Summary)

Properties

assistantId: string

The assistant to create the conversation in.

The initial message in the conversation.

owner: string

The owner of the conversation.

title?: string

The title of the conversation, used to display and distinguish. If not given a title will be generated after the first assistant response.