Gpt-5.4-high

GPT-5.4 是 OpenAI 最新的前沿模型,它将 Codex 和 GPT 系列整合到一个统一的系统中。它拥有超过 100 万个 token 的上下文窗口,支持文本和图像输入,从而能够在同一工作流程中实现高上下文推理、编码和多模态分析。该模型在编码、文档理解、工具使用和指令执行方面均表现出色。

Capabilities
"POST", "endpoint": "/v1/chat/completions", "protocol": "openai-chat", "parameters": {"optional": {"stream": {"type": "boolean", "default": false}, "max_tokens": {"type": "integer", "default": 1000}, "temperature": {"max": 2, "min": 0, "type": "number", "default": 0.7}}, "required": ["model", "messages"]}, "validation": {"timeout_ms": 30000, "status_codes": [200], "response_path": "choices[0].message.content", "must_be_non_empty": true}, "test_request": {"model": "{{model}}", "messages": [{"role": "user", "content": "Say hello in one sentence"}], "max_tokens": 50, "temperature": 0.7}}
Input
text
Output
text
Regions
global
Last verified
2026-08-15T04:50:43.134131854+00:00
Price
18 IFT / 1M tokens
Documentation
-

Example

curl https://api.inferlink.ai/v1/chat/completions \
  -H 'Authorization: Bearer $INFERLINK_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"model":"openai/openai/gpt-5.4-high","messages":[{"role":"user","content":"Hello"}]}'