| Input length | Input / 1M | Output / 1M | Cache hit / 1M |
|---|---|---|---|
| — - 272k | $10 | $50 | $1 |
| > 272k | $20 | $75 | $2 |
GPT-6 Astra 在 NextModel 中是什么?
GPT-6 Astra 是 NextModel 目录中的 OpenAI 模型,常用于 图像理解、multimodal chat 工作负载。当前展示价格为 Starting at $10 / 1M tokens、输出 $50 / 1M tokens,上下文窗口为 1.1M token。
适用场景
- 图像理解
- multimodal chat
OpenAI 兼容调用示例
保持 OpenAI SDK 调用方式不变,把 base_url 改为 NextModel,并使用模型目录 ID openai--gpt-6-astra。
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.nextmodel.app/v1"
)
resp = client.chat.completions.create(
model="openai/gpt-6-astra",
messages=[{"role": "user", "content": "Hello from NextModel"}]
)
print(resp.choices[0].message.content)相似替代项
GPT-4.1 多模态模型,支持最高 1M token 上下文窗口。在编码、指令遵循和长上下文理解方面大幅提升,支持文本和图像输入,适用于大规模文档处理和复杂代码任务。
GPT-4.1 轻量版,1M token 上下文窗口,在保持强大编码和推理能力的同时大幅降低成本。适合高吞吐量场景和对延迟敏感的应用。
GPT-4.1 超轻量版,1M token 上下文窗口,极低成本和延迟。支持多模态输入,适合分类、自动补全、标签提取等轻量级任务。
参考
相关文章
上线前如何估算 AI API 成本
Listed price only tells you the unit cost. This walkthrough turns that into a traffic estimate.
Lin Qiming
LLM Gateway: Compare Options and Alternatives
Same OpenAI-compatible base URL, with routing and billing sitting in front of the model.
Zhao Yu'an
给开发者的 OpenRouter 替代方案:当团队还需要 AI API 成本治理时
If the buying question is cost control rather than one model, start here.
Zhao Yu'an
常见问题