> ## 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.

# DecisionsResponse

## Example Usage

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

let value: DecisionsResponse = {
  answers: {},
  model: "A8",
  usage: {
    inputTokens: 709923,
    outputTokens: 313639,
  },
};
```

## Fields

| Field      | Type                                                                  | Required             | Description |
| ---------- | --------------------------------------------------------------------- | -------------------- | ----------- |
| `answers`  | Record\<string, *models.Answers*>                                     | :heavy\_check\_mark: | N/A         |
| `id`       | *string*                                                              | :heavy\_minus\_sign: | N/A         |
| `model`    | *string*                                                              | :heavy\_check\_mark: | N/A         |
| `provider` | *string*                                                              | :heavy\_minus\_sign: | N/A         |
| `usage`    | [models.DecisionsResponseUsage](../models/decisionsresponseusage.mdx) | :heavy\_check\_mark: | N/A         |
