OpenAIFreeOperational
GPT Oss 120b
API model name: gpt-oss-120b
GPT Oss 120b is OpenAI's chat model, served on the Api.Airforce unified API. It has a 131K-token context window. Capabilities include Tool calling, Reasoning. It is available on the free tier at no per-token cost. Knowledge cutoff: 2024-06. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- OpenAI
- Type
- chat model
- Context window
- 131K tokens
- Max output
- 33K tokens
- Knowledge cutoff
- 2024-06
- Input
- text
- Output
- text
Capabilities
Tool callingReasoningStreaming
Benchmarks
Independent evaluations and measured speed from Artificial Analysis.
Intelligence Index
24.5/100
Coding Index
15.5/100
Math Index
66.7/100
MMLU-Pro78%
GPQA Diamond67%
Humanity's Last Exam5%
LiveCodeBench71%
AIME 202567%
Output speed358.3 tok/s
Time to first token0.50 s
Source: Benchmark data by Artificial Analysis (artificialanalysis.ai)
What is GPT Oss 120b used for?
- Chatbots & assistants — conversational AI, drafting, summarizing and Q&A.
- Agents & automation — function calling and tool use for multi-step workflows.
- Complex reasoning — math, coding and step-by-step problem solving.
- Real-time experiences — stream tokens for responsive chat and apps.
GPT Oss 120b vs. similar models
| Model | Intelligence | Context | Input / 1M | Output / 1M |
|---|---|---|---|---|
| GPT Oss 120b | 24.5 | 131K | Free | Free |
| GPT 3.5 | — | — | $1.11 | $3.30 |
| GPT 3.5 Turbo 16k | — | — | $10.26 | $20.52 |
| GPT 4 | — | 8K | $6.42 | $12.84 |
Prices are Api.Airforce pay-as-you-go rates per 1M tokens. Context is the maximum input length.
Related models
GPT 3.5OpenAI · $1.11 / 1MGPT 3.5 Turbo 16kOpenAI · $10.26 / 1MGPT 4OpenAI · $6.42 / 1MGPT 4OpenAI · $2.13 / 1MGPT 4OpenAI · $2.13 / 1MGPT 4 32kOpenAI · $205.32 / 1MGPT 4 TurboOpenAI · $2.13 / 1MGPT 4 VisionOpenAI · $2.13 / 1MGPT 4.1OpenAI · $0.30 / 1MGPT 4.1 NanoOpenAI · $0.03 / 1MGPT 4o AudioOpenAI · $13.23 / 1MGPT 4o MiniOpenAI · Free
GPT Oss 120b — frequently asked questions
- How much does GPT Oss 120b cost?
- GPT Oss 120b is available on the free tier at no token cost — create an API key and start building. Paid plans add higher rate limits.
- What is the context window of GPT Oss 120b?
- GPT Oss 120b supports a context window of up to 131K tokens. It can return up to 33K tokens in a single response.
- What can GPT Oss 120b do?
- GPT Oss 120b supports Tool calling, Reasoning.
- Is GPT Oss 120b free to use?
- Yes — GPT Oss 120b is on the free tier. You can use it with an Api.Airforce API key at no cost.
- How do I use GPT Oss 120b via the API?
- GPT Oss 120b is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID gpt-oss-120b with your Api.Airforce API key.
- Who makes GPT Oss 120b?
- GPT Oss 120b is OpenAI's chat model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use GPT Oss 120b via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass gpt-oss-120b as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-oss-120b",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="gpt-oss-120b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "gpt-oss-120b",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);