OpenAI: gpt-oss-120b

由 OpenAI 提供

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.

支持流式输出最大 131K tokens

模型特性

输入模态

  • text

模型参数

最大 Tokens:131K
默认温度:0.7
流式输出:支持

定价信息

积分定价

文本输入:50 积分
图片输入:50 积分
消息输出:50 积分

API 定价

输入价格:$0.073/1K tokens
输出价格:$0.290/1K tokens

使用示例

API 调用示例
curl -X POST "https://chat.chatsking.com/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-oss-120b",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.7
  }'