> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# SubmitGenerationFeedbackRequest

Structured feedback about a specific generation

## Example Usage

```typescript theme={null}
import { SubmitGenerationFeedbackRequest } from "@openrouter/sdk/models";

let value: SubmitGenerationFeedbackRequest = {
  category: "incorrect_response",
  generationId: "gen-3bhGkxlo4XFrqiabUM7NDtwDzWwG",
};
```

## Fields

| Field          | Type                                      | Required             | Description                                           | Example                                            |
| -------------- | ----------------------------------------- | -------------------- | ----------------------------------------------------- | -------------------------------------------------- |
| `category`     | [models.Category](../models/category.mdx) | :heavy\_check\_mark: | The category of feedback being reported               | incorrect\_response                                |
| `comment`      | *string*                                  | :heavy\_minus\_sign: | An optional free-text comment describing the feedback | The model repeated the same paragraph three times. |
| `generationId` | *string*                                  | :heavy\_check\_mark: | The generation to submit feedback on                  | gen-3bhGkxlo4XFrqiabUM7NDtwDzWwG                   |
