⚠️

模型已下架

該模型已從API中移除。本頁面僅供參考。

查看替代方案
U

gpt-5.1-codex-high

4k ContextTextPopular

Unknown 推出的 gpt-5.1-codex-high 模型,支援 4K 上下文。適用於Chat任務。

能力雷達

Compare with Claude 3

關於 gpt-5.1-codex-high

"高可靠性 API"

gpt-5.1-codex-high 是由 Unknown 開發的先進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: "gpt-5.1-codex-high",
  messages: [{ role: "user", content: "Hello world!" }],
  temperature: 0.7,
  stream: true,
});