interface WatchedMessage {
    text: string;
    type:
        | "user"
        | "assistant"
        | "system"
        | "tool-use"
        | "tool-result"
        | "other";
}

Properties

Properties

text: string
type: "user" | "assistant" | "system" | "tool-use" | "tool-result" | "other"