vercel 6小时前 · 2026-09-23 03:02:22 · 2 阅读
GPT-6 Sol 和 Luna 现已在 AI 网关上上线
OpenAI 的 GPT-6 Sol 和 GPT-6 Luna 现已在 AI Gateway 上线。
两款模型继承了 GPT-6 在专业工作、编程、计算机操作、事实准确性和表达沟通方面的提升,价格低于 GPT-6 Astra。
GPT-6 Sol(
openai/gpt-6-sol)适合复杂的专业工作流和持续的编程任务,尤其适合对质量和迭代空间都有要求的场景。GPT-6 Luna(
openai/gpt-6-luna)成本更低,适合高吞吐的 agentic 工作流、编程和日常任务。
与 GPT-5.6 系列相比,Sol 和 Luna 的表达更直接,减少了术语堆砌和低价值细节。两者的事实可靠性也有所提升,在编程任务中更不容易对已完成的工作做出误导性描述。
你可以通过 AI SDK、OpenAI 兼容的 Chat Completions API、OpenAI 兼容的 Responses API 以及连接到 AI Gateway 的编程智能体使用 openai/gpt-6-sol 和 openai/gpt-6-luna。
1import { streamText } from 'ai';2
3const result = streamText({4 model: 'openai/gpt-6-sol',5 prompt:6 `Investigate the checkout failures, implement and test a fix,7 then summarize the changes and any remaining risks.`,8});Copy for agent查看模型详情 ↗安装最新版 Vercel CLI,并将你支持的编程智能体连接到 AI Gateway:
1npm i -g vercel@latest2vercel ai-gateway setup然后,需要更长、更复杂的编程任务时选择 openai/gpt-6-sol,更看重吞吐量时选择 openai/gpt-6-luna。
原始来源: vercel