Lightweight gives you access to 25+ models from four providers through a single API key. Every model works with the same POST /v1/chat/completions endpoint.
For the live, always-up-to-date catalog, call GET /v1/models. See the Models API reference for full details.
OpenAI
| Model | Context Window | Status |
|---|
gpt-5.4 | 128K | Available |
gpt-5.4-mini | 128K | Available |
gpt-5.2 | 128K | Available |
gpt-5.1 | 1M | Available |
gpt-5.1-codex | 1M | Available |
gpt-5-mini | 128K | Available |
gpt-4.1 | 1M | Available |
gpt-4.1-mini | 1M | Available |
gpt-4.1-nano | 1M | Available |
gpt-4o | 128K | Available |
gpt-4o-mini | 128K | Available |
o3 | 200K | Available |
o3-mini | 200K | Available |
o4-mini | 200K | Available |
Anthropic
| Model | Context Window | Status |
|---|
claude-opus-4.6 | 200K | Available |
claude-opus-4.6-fast | 200K | Available |
claude-sonnet-4.6 | 200K | Available |
claude-sonnet-4.5 | 200K | Available |
claude-opus-4.5 | 200K | Available |
claude-haiku-4.5 | 200K | Available |
Google
| Model | Context Window | Status |
|---|
gemini-3.1-pro | 1M | Available |
gemini-2.5-pro | 1M | Available |
gemini-3-flash | 1M | Available |
xAI
| Model | Context Window | Status |
|---|
grok-code-fast-1 | 128K | Available |
Model Aliases
For convenience, Lightweight supports short alias names that resolve to the latest version:
| Alias | Resolves To |
|---|
claude-opus | claude-opus-4.6 |
claude-sonnet | claude-sonnet-4.6 |
claude-haiku | claude-haiku-4.5 |
gpt | gpt-5.4 |
gemini-pro | gemini-3.1-pro |
gemini-flash | gemini-3-flash |
Aliases always point to the latest stable version. If you need deterministic behavior, use the full model name (e.g. claude-opus-4.6 instead of claude-opus).
Extended Thinking
Anthropic Claude models support extended thinking (chain-of-thought) when you pass the appropriate parameter. This allows the model to reason through complex problems step by step before responding.
Extended thinking is supported on:
claude-opus-4.6
claude-opus-4.6-fast
claude-sonnet-4.6
claude-sonnet-4.5
See the Anthropic SDK integration guide for usage examples.
Live Catalog
The model list above is a point-in-time snapshot. For the always-current catalog, use the API:
curl https://api.lightweight.one/v1/models \
-H "Authorization: Bearer lw_sk_your-key-here"
See Models API for full response schema and filtering options.