Skip to content

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

FieldTypeRequiredDescription
idstring✔️Request ID to associate this feedback with. Use chat completion request ID (chatcmpl-xxx) or response ID (resp-xxx).
ratingcomponents.RatingOptional feedback rating. Can be 'thumbs_up' for positive feedback or 'thumbs_down' for negative feedback.
descriptionstringOptional detailed feedback description. Use this to provide specific comments, suggestions, or explain the rating (max 2000 characters).