OpenAI: o1

由 OpenAI 提供

The latest and strongest model family from OpenAI, o1 is designed to spend more time thinking before responding. The o1 model series is trained with large-scale reinforcement learning to reason using chain of thought. The o1 models are optimized for math, science, programming, and other STEM-related tasks. They consistently exhibit PhD-level accuracy on benchmarks in physics, chemistry, and biology. Learn more in the [launch announcement](https://openai.com/o1).

支持流式输出最大 100K tokens

模型特性

输入模态

  • text
  • image

模型参数

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

定价信息

积分定价

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

API 定价

输入价格:$15.000/1K tokens
输出价格:$60.000/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": "o1",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.7
  }'