Hy3 Preview
Hunyuan logo

Hy3 Preview

hy3-previewllms.txt
Hunyuan
Hunyuan Hy3 preview is designed for agent workloads, adopting a MoE architecture with 295B capacity and 21B activated parameters. It provides three modes within the same model—no_think (ultra-fast response), think_low (fast thinking), and think_high (deep reasoning)—to accommodate different latency and depth requirements from high-frequency interactions to complex engineering tasks. On code benchmarks such as SWE-bench Verified it approaches the current state of the art, and its 256K context supports cross-file code refactoring and long-document analysis. It is suitable for developers who require reliable task completion while being sensitive to inference costs.

Pricing

TierPricingCache Read
Input<=16K
$0.17$0.5667
$0.051/M tokens
16K<Input<=32K
$0.2254$0.9016
$0.0845/M tokens
32K<Input
$0.2818$1.1272
$0.1127/M tokens

Input Modalities

  • Text

Output Modalities

  • Text

Context length

  • 256K tokens

Max output

  • 128K tokens

Capabilities

  • Thinking
  • Streaming
  • Tool calling
  • Web search
  • URL context
  • Code interpreter
  • Computer use
  • File search
  • Memory tool
  • Structured outputs
  • Citations
  • Prompt caching
  • Background mode
  • Server-side sessions

Providers

Tencent tencent-hy3-preview
Pricing$0.17$0.5667
Cache Read$0.051/M tokens
Pricing$0.2254$0.9016
Cache Read$0.0845/M tokens
Pricing$0.2818$1.1272
Cache Read$0.1127/M tokens
Context256K
Max output128K
Latency2.1S
Throughput40.2TPS
Uptime
100.00% uptime 2 days ago
0.00% uptime yesterday
0.00% uptime today

Performance for hy3-preview

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="hy3-preview",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is Hy3 Preview?

Hunyuan Hy3 preview is designed for agent workloads, adopting a MoE architecture with 295B capacity and 21B activated parameters. It provides three modes within the same model—no_think (ultra-fast response), think_low (fast thinking), and think_high (deep reasoning)—to accommodate different latency and depth requirements from high-frequency interactions to complex engineering tasks. On code benchmarks such as SWE-bench Verified it approaches the current state of the art, and its 256K context supports cross-file code refactoring and long-document analysis. It is suitable for developers who require reliable task completion while being sensitive to inference costs.