Interface FeedbackBase

interface FeedbackBase {
    comment: null | string;
    correction: null | string | object;
    created_at: string;
    feedback_source: null | KVMap | APIFeedbackSource | ModelFeedbackSource;
    key: string;
    modified_at: string;
    run_id: string;
    score: ScoreType;
    value: ValueType;
}

Hierarchy (View Summary)

Properties

comment: null | string
correction: null | string | object
created_at: string
feedback_source: null | KVMap | APIFeedbackSource | ModelFeedbackSource
key: string
modified_at: string
run_id: string
score: ScoreType
value: ValueType