Tencent's flagship Hunyuan model. Excellent Chinese comprehension, general reasoning and tool calling, delivered through NovAI's zero-fee gateway.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hy3",
"messages": [{"role":"user","content":"Explain the difference between TCP and UDP in simple terms."}]
}'
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="hy3",
messages=[{"role":"user","content":"Explain the difference between TCP and UDP in simple terms."}],
)
print(resp.choices[0].message.content)