首页/OpenAI GPT OSS 120B
OpenAI

OpenAI GPT OSS 120B

openai/gpt-oss-120b
gpt-oss-120b is an open-weight, 117B-parameter Mixture-of-Experts (MoE) language model from OpenAI designed for high-reasoning, agentic, and general-purpose production use cases. It activates 5.1B parameters per forward pass and is optimized to run on a single H100 GPU with native MXFP4 quantization. The model supports configurable reasoning depth, full chain-of-thought access, and native tool use, including function calling, browsing, and structured output generation.
价格
输入$0.1/百万 tokens
输出$0.5/百万 tokens

使用以下代码示例来集成我们的API:

1from openai import OpenAI
2
3client = OpenAI(
4    api_key="<Your API Key>",
5    base_url="https://api.jiekou.ai/openai"
6)
7
8response = client.chat.completions.create(
9    model="openai/gpt-oss-120b",
10    messages=[
11        {"role": "system", "content": "You are a helpful assistant."},
12        {"role": "user", "content": "Hello, how are you?"}
13    ],
14    max_tokens=131072,
15    temperature=0.7
16)
17
18print(response.choices[0].message.content)

信息

提供商
量化
bf16

支持的功能

上下文长度
131072
最大输出
131072
函数调用
支持
结构化输出
支持
推理
支持
Input Capabilities
text, image
Output Capabilities
text
联系我们