GPT 6 Astra API
由 OpenAI 提供的 文本对话 模型。
能力
能力矩阵
文本支持
视觉—
音频—
工具—
JSON支持
推理—
价格与分组
线路与价格
GPT 特惠线路优化0.09×倍率数据收集中
波动时切换其他线路
输入
$0.9 / 1M
输出
$4.5 / 1M
缓存读取
$1.13 / 1M
缓存写入
$0.09 / 1M
近期可用性过去 24 小时 · 主动探测—
24h 前16h 前8h 前现在
GPT 特惠线路20.09×倍率数据收集中
特惠备用线路
输入
$0.9 / 1M
输出
$4.5 / 1M
缓存读取
$1.13 / 1M
缓存写入
$0.09 / 1M
近期可用性过去 24 小时 · 主动探测—
24h 前16h 前8h 前现在
GPT Plus线路0.11×倍率数据收集中
pro+plus混合号池
输入
$1.1 / 1M
输出
$5.5 / 1M
缓存读取
$1.38 / 1M
缓存写入
$0.11 / 1M
近期可用性过去 24 小时 · 主动探测—
24h 前16h 前8h 前现在
GPT Pro 高性能线路0.14×倍率数据收集中
企业专线Pro
输入
$1.4 / 1M
输出
$7 / 1M
缓存读取
$1.75 / 1M
缓存写入
$0.14 / 1M
近期可用性过去 24 小时 · 主动探测—
24h 前16h 前8h 前现在
价格单位:美元,每 1M tokens。价格随官方调整,实时价格以模型广场为准。
数据快照时间:2026-09-05 04:36;可用性为过去 24 小时主动探测结果,性能为真实调用指标。
对比
分组对比
分组价格 输入/输出速度
GPT 特惠线路优化$0.9 / $4.530.4 t/s
GPT 特惠线路2$0.9 / $4.5—
GPT Plus线路$1.1 / $5.5—
GPT Pro 高性能线路$1.4 / $7—
API
接入示例
所有模型共用同一接口,完全兼容 OpenAI 协议,切换模型只需修改 model 字段;一个 Key 可调用全部模型。
Python · OpenAI SDK
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.yomiapi.com/v1",
api_key="sk-your-yomi-key",
)
resp = client.chat.completions.create(
model="gpt-6-astra",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)curl · OpenAI 兼容
curl https://api.yomiapi.com/v1/chat/completions \
-H "Authorization: Bearer sk-your-yomi-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-6-astra",
"messages": [{"role": "user", "content": "Hello"}]
}'
Yomi API