Interface ChatContext

Extra context passed to a participant.

Stubbed

interface ChatContext {
    history: readonly (ChatRequestTurn | ChatResponseTurn)[];
}

Properties

Properties

history: readonly (ChatRequestTurn | ChatResponseTurn)[]

All of the chat messages so far in the current chat session. Currently, only chat messages for the current participant are included.