Interface ClassifyErrorEvent

Emitted when query classification fails.

interface ClassifyErrorEvent {
    type: "classify:error";
    error: Error;
    timestamp: number;
}

Properties

Properties

type: "classify:error"
error: Error

The error that caused classification to fail.

timestamp: number

Timestamp when the error occurred.