openai/gpt-6-luna
GPT-6 Luna 是 GPT-6 家族的轻量型号,也是全家最便宜的选择,适合目标明确的高并发任务 —— 摘要、信息抽取、路由与简单问答。保留 105 万 token 上下文(最大输入 92.2 万)、图片输入、工具调用,推理强度可从 none 调到 max。支持 prompt 缓存,缓存读取按输入价的十分之一计费。
来源: openai_2026_09_gpt6_g6l_x0.30 · 核验于 2026-09-23
缓存读 $0.003/M · 缓存写 $0.0375/M
| 档位 | 输入 | 缓存读 | 缓存写 | 输出 |
|---|---|---|---|---|
| Standard ≤272K | $0.03 | $0.003 | $0.0375 | $0.15 |
| Standard >272K | $0.06 | $0.006 | $0.075 | $0.225 |
API 调用时用任一 ID 都可以。
openai/gpt-6-luna把 ONEHOP_KEY 占位符替换为你的 API Key。 创建 →
from openai import OpenAI
client = OpenAI(
base_url="https://api.onehop.ai/v1",
api_key="<ONEHOP_KEY>",
)
completion = client.chat.completions.create(
model="openai/gpt-6-luna",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)最近 30 天 9 次请求