Skip to content

CreateCompletionFeedbackRequest

Example Usage

typescript
import { CreateCompletionFeedbackRequest } from "@meetkai/mka1/models/operations";

let value: CreateCompletionFeedbackRequest = {
  createFeedbackRequest: {
    id: "chatcmpl-abc123def456",
    rating: "thumbs_up",
    description: "The response was accurate and helpful.",
  },
};

Fields

FieldTypeRequiredDescriptionExample
xOnBehalfOfstringOptional external end-user identifier forwarded by the API gateway.
createFeedbackRequestcomponents.CreateFeedbackRequest✔️N/A{
"id": "chatcmpl-abc123def456",
"rating": "thumbs_up",
"description": "The response was accurate and helpful."
}