Gpt-5.2-low

GPT-5.2 是 GPT-5 系列中最新的前沿模型,与 GPT-5.1 相比,它提供了更强的代理能力和长上下文性能。它采用自适应推理来动态分配计算资源,对简单查询做出快速响应,同时在复杂任务上投入更多深度。

能力
"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}}
输入
text
输出
text
区域
global
验证时间
2026-08-15T04:50:43.134092576+00:00
价格
15.84 IFT / 1M tokens
文档
-

调用示例

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.2-low","messages":[{"role":"user","content":"Hello"}]}'