Properties that describe the chat context.

interface ChatTextGenProperties {
    context?: string;
    history?: ChatHistoryTextGenProperties[];
}

Properties

Properties

context?: string

The RAG context for grounded chat input.

The history for this chat session.