Skip to main content
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Example Usage

import { Input2 } from "@openrouter/sdk/models";

let value: Input2 = {
  messages: [
    {
      "content": "What is the meaning of life?",
      "role": "user",
    },
  ],
};

Fields

FieldTypeRequiredDescriptionExample
messagesany[]:heavy_check_mark:N/A[
{"content": "What is the meaning of life?","role": "user"}
]