Vercel News
GPT 6 Astra now available on Vercel AI Gateway
8.5内容质量
TL;DR · AI 摘要
Vercel AI Gateway现已支持OpenAI的GPT 6 Astra模型,该模型可处理复杂任务如代码调试和数据分析。
核心要点
- GPT 6 Astra支持长期代理任务,适用于软件工程和科研领域
- 使用'openai/gpt-6-astra'模型标识符可调用该模型
- 需通过vercel ai-gateway coding-agents setup命令集成
结构提纲
按章节快速跳转。
思维导图
用一张图看清主题之间的关系。
查看大纲文本(无障碍 / 无 JS 友好)
- GPT 6 Astra
- 功能特性
- 任务处理
- 数据分석
- 使用方法
- API调用
- 代理集成
金句 / Highlights
值得收藏与分享的关键句。
Astra can navigate software, complete forms, organize records, analyze data...
model: 'openai/gpt-6-astra'
run vercel ai-gateway coding-agents setup
#AI#Vercel#OpenAI#GPT
打开原文GPT 6 Astra 现已上线 Vercel AI Gateway - Vercel
OpenAI 的 GPT 6 Astra 现已通过 AI Gateway 提供服务。该模型专为跨软件工程、计算机和浏览器使用、科学研究以及专业工作流程的长期运行智能代理任务而设计。
Astra 可以导航软件、填写表格、整理记录、分析数据、运行模拟、构建和测试网站。它还能在任务演变过程中提升指令遵循能力,能够整合新需求而不丢失早期约束,在等待澄清时继续独立工作,并使用合理假设进行推断。
在代码或编码代理集成中调用 GPT 6 Astra 时,请使用 openai/gpt-6-astra:
AI SDK
Codex
Hermes
Chat Completions
code
1
import
{
streamText
}
from
'ai'
;
2
3
const
result
=
streamText
(
{
4
model
:
'openai/gpt-6-astra'
,
5
prompt
:
6
`
Investigate the checkout failures, implement and test a fix,
7
then summarize the changes and any remaining risks.
`
,
8
}
)
;复制给代理
查看模型详情
↗
在编码代理中使用时,请参阅编码代理指南,然后运行 vercel ai-gateway coding-agents setup 连接 Codex、Cursor 等工具,并在代理中选择 openai/gpt-6-astra。
在模型游乐场尝试 GPT 6 Astra 。