Tencent: Hy3 preview

OpenRouterQuality: 55/100Unverified
Try in Playground
✗ Vision✗ Reasoning✓ Tool Use✓ Streaming✓ System Messages

Overview

Tencent: Hy3 preview is a efficient model from OpenRouter with a 262K context window, supporting function calling. Priced at $0.000180/1K input, $0.000600/1K output.

ANT Routing Intelligence

Limited routing data available for Tencent: Hy3 preview. Intelligence insights will appear as more requests are routed through ANT.

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

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