Interface ChatErrorDetails

Represents an error result from a chat request.

Stubbed

interface ChatErrorDetails {
    message: string;
    responseIsFiltered?: boolean;
}

Properties

message: string

An error message that is shown to the user.

responseIsFiltered?: boolean

If set to true, the response will be partly blurred out.