Skip to main content

gpt-oss-120b

Approved Data Classifications

Description

OpenAI's gpt-oss is a powerful model for reasoning and agentic tasks. It delivers similar results to OpenAI o4‑mini on common benchmarks. The model was trained on a mostly English, text-only dataset, with a focus on STEM, coding, and general knowledge. Open AI's gpt-oss models are excellent for:

  • Web browsing (using built-in browsing tools)
  • Function calling with defined schemas
  • Agentic operations like browser tasks

Capabilities

ModelTraining DataInputOutputContext LengthCost (per 1 million tokens)
gpt-oss-120bUndisclosedTextText128,000$0.15/1M input
$0.06/1M output
info
  • 1M represents 1 Million Tokens
  • All prices listed are based on 1 Million Tokens

Availability

Cloud Provider

Usage

curl -X POST https://api.ai.it.ufl.edu/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "gpt-oss-120b",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'

References

  1. OpenAI Introducing gpt-oss
    https://openai.com/index/introducing-gpt-oss/