WaveAPI
返回模型市场
OpenAI其他

gpt-5.6-luna

GPT-5.6 Luna is a fast, cost-efficient model in OpenAI's GPT-5.6 series. It is suited for high-volume, latency-sensitive tasks such as chat, classification, and lightweight agentic workflows, providing capable reasoning for...

定价

输入

$0.90

/M

输出

$5.40

/M

计费方式

按 Token

调用模式

自动

更新时间

2026年7月9日

API 调用示例

from openai import OpenAI

client = OpenAI(
    base_url="https://api.qingwave.com/v1",
    api_key="your-qwave-key"
)

response = client.chat.completions.create(
    model="gpt-5.6-luna",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)