OpenAI: o1-mini

由 OpenAI 提供

The latest and strongest model family from OpenAI, o1 is designed to spend more time thinking before responding. 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). Note: This model is currently experimental and not suitable for production use-cases, and may be heavily rate-limited.

支持流式输出最大 66K tokens

模型特性

输入模态

  • text

模型参数

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

定价信息

积分定价

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

API 定价

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