Back to Models

OpenAI GPT-OSS 120B

openai/gpt-oss-120b
OpenAI Chat

Description

OpenAI GPT-OSS 120B by OpenAI. This model supports chat capabilities.

Specifications

Context Length:
131072
Parameters:
120B

Pricing

Input Cost:
$0.0300/100K tokens
Output Cost:
$0.1200/100K tokens

Usage Example

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.yourproxy.com/v1",
  apiKey: process.env.PROXY_KEY,
});

const completion = await client.chat.completions.create({
  model: "openai/gpt-oss-120b",
  messages: [{ role: "user", content: "Hello!" }],
});