Interface RespondMessage

Represents a message to send a message the model should respond to via the interaction manager.

SendRespondMessage

interface RespondMessage {
    context?: string;
    id: string;
    message: string;
    type: "respond";
}

Properties

Properties

context?: string
id: string
message: string

The message content the model should respond to.

type: "respond"

The type of the message, which is "sendRespond".