Tencent's next-generation Hunyuan flagship in preview. A 1M-token context window with strong bilingual reasoning and agentic tool use — served at provider list price with zero platform fee.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hy4-preview",
"messages": [{"role":"user","content":"Summarize the key risks in this 200-page contract"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="hy4-preview",
messages=[{"role":"user","content":"Summarize the key risks in this 200-page contract"}],
)
print(resp.choices[0].message.content)
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free