GPT-5.6 Luna
即将上线GPT-5.6 轻量档,速度与性价比领先,适合高并发推理与日常编程任务。
价格
输入
$0.10
/ M tokens
输出
$0.60
/ M tokens
缓存读取
$0.010
/ M tokens
规格参数
上下文窗口400K tokens
最大输出33K tokens
发布时间
提示词缓存支持
代码示例
from openai import OpenAI
client = OpenAI(
base_url="https://openmux.ai/v1",
api_key="<YOUR_OPENMUX_KEY>",
)
response = client.chat.completions.create(
model="gpt-5.6-luna",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)