OpenAI: o1-preview
由 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.
支持流式输出最大 33K tokens
模型特性
输入模态
- text
模型参数
最大 Tokens:33K
默认温度:0.7
流式输出:支持
定价信息
积分定价
文本输入:450 积分
图片输入:450 积分
消息输出:7145 积分
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-preview",
"messages": [
{
"role": "user",
"content": "Hello, how are you?"
}
],
"max_tokens": 1000,
"temperature": 0.7
}'