⚠️

模型已下架

该模型已从API中移除。本页面仅供参考。

查看替代方案
U

o4-mini-high

4k ContextTextPopular

Unknown 推出的 o4-mini-high 模型,支持 4K 上下文。适用于Chat任务。

能力雷达

Compare with Claude 3

关于 o4-mini-high

"高可靠性 API"

o4-mini-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: "o4-mini-high",
  messages: [{ role: "user", content: "Hello world!" }],
  temperature: 0.7,
  stream: true,
});