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
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
xOnBehalfOf | string | ➖ | Optional external end-user identifier forwarded by the API gateway. | |
createFeedbackRequest | components.CreateFeedbackRequest | ✔️ | N/A | { "id": "chatcmpl-abc123def456", "rating": "thumbs_up", "description": "The response was accurate and helpful." } |