CreateFeedbackRequest
Request parameters for creating feedback. Allows users to rate and comment on model outputs.
Example Usage
typescript
import { CreateFeedbackRequest } from "@meetkai/mka1/models/components";
let value: CreateFeedbackRequest = {
id: "<id>",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | Request ID to associate this feedback with. Use chat completion request ID (chatcmpl-xxx) or response ID (resp-xxx). |
rating | components.Rating | ➖ | Optional feedback rating. Can be 'thumbs_up' for positive feedback or 'thumbs_down' for negative feedback. |
description | string | ➖ | Optional detailed feedback description. Use this to provide specific comments, suggestions, or explain the rating (max 2000 characters). |