TTS 1 在 NextModel 中是什么?
TTS 1 是 NextModel 目录中的 OpenAI 模型,常用于 General chat via OpenAI、API workloads 工作负载。当前展示价格为 $0 / 1M tokens、输出 $0 / 1M tokens,上下文窗口为 — token。
适用场景
- General chat via OpenAI
- API workloads
OpenAI 兼容调用示例
保持 OpenAI SDK 调用方式不变,把 base_url 改为 NextModel,并使用模型目录 ID openai--tts-1。
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/tts-1",
messages=[{"role": "user", "content": "Hello from NextModel"}]
)
print(resp.choices[0].message.content)相似替代项
Available through the NextModel gateway via OpenAI.
Available through the NextModel gateway via OpenAI.
Available through the NextModel gateway via OpenAI.
参考
相关文章
上线前如何估算 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
常见问题