BenchmarksAAItem - TypeScript SDK
BenchmarksAAItem - TypeScript SDK
BenchmarksAAItem type definition
BenchmarksAAItem - TypeScript SDK
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.
1 import { BenchmarksAAItem } from "@openrouter/sdk/models"; 2 3 let value: BenchmarksAAItem = { 4 aaName: "GPT-4o", 5 agenticIndex: 58.3, 6 codingIndex: 65.8, 7 intelligenceIndex: 71.2, 8 modelPermaslug: "openai/gpt-4o", 9 pricing: { 10 completion: "0.00001", 11 prompt: "0.0000025", 12 }, 13 };
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
aaName | string | ✔️ | Model name as listed on Artificial Analysis. | GPT-4o |
agenticIndex | number | ✔️ | Artificial Analysis Agentic Index composite score. Higher is better. | 58.3 |
codingIndex | number | ✔️ | Artificial Analysis Coding Index composite score. Higher is better. | 65.8 |
intelligenceIndex | number | ✔️ | Artificial Analysis Intelligence Index composite score. Higher is better. | 71.2 |
modelPermaslug | string | ✔️ | Stable OpenRouter model identifier. | openai/gpt-4o |
pricing | models.BenchmarkPricing | ✔️ | OpenRouter pricing per token for this model. Null if pricing is unavailable. | {"completion": "0.000015","prompt": "0.000003"} |