Hy3 Preview
OpenAI logo

Hy3 Preview

hy3-preview
OpenAI

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

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

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://shkq.org/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 the context length of Hy3 Preview?

Hy3 Preview has a 256,000 token context window. It supports up to 128,000 output tokens.