⚠️
查看替代方案 →模型已下架
該模型已從API中移除。本頁面僅供參考。
O
o3-high
4k ContextTextPopular
OpenAI 推出的 o3-high 模型,支援 4K 上下文。適用於Chat任務。
能力雷達
Compare with Claude 3
關於 o3-high
"高可靠性 API"
o3-high 是由 OpenAI 開發的先進AI模型。它具備 4K 的上下文窗口,在處理Chat任務時表現出色。該模型透過OkRouter API提供,具有極低的延遲和高可靠性。
⚡ 核心優勢
- 高可靠性 API
- 企業級安全性
- 頂級推理能力
🎯 最佳用途
- 智慧客服機器人
- 長文件分析與總結
- 創意寫作輔助
- 多語言翻譯
線上試用
Parameters Setup
0.7
Controls randomness: Lowering results in less random completions.
Return data chunks as they arrive
request.js
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.okrouter.com/v1",
apiKey: process.env.OKROUTER_API_KEY,
});
const completion = await client.chat.completions.create({
model: "o3-high",
messages: [{ role: "user", content: "Hello world!" }],
temperature: 0.7,
stream: true,
});