Interface AssistantConversation

A conversation with an assistant.

interface AssistantConversation {
    assistantId: string;
    conversationId: string;
    createdAt: Date;
    owner: string;
    title?: string;
}

Properties

assistantId: string

The id of the assistant the conversation lives in.

conversationId: string

The id of the conversation.

createdAt: Date

When this conversation was created.

owner: string

The owner of the assistant.

title?: string

The title of the conversation, this might be filled in later.