0G Foundation 제공
Tencent Hunyuan Hy4 preview; 770B total / 49B active MoE tuned for agent, coding and production workflows — stronger task decomposition, long-horizon tool use and long-chain execution than Hunyuan 3. Served via Tencent Cloud MaaS (TokenHub), which exposes both OpenAI and Anthropic faces. Text in / text out, 1M context, up to 64K output. Deep thinking is on by default and can be disabled with reasoning_effort:"none" (enable_thinking is not honored); function calling, JSON mode (response_format: json_object / json_schema) and implicit prompt caching supported.
1M
토큰 1,000,000개
66K
토큰 65,536개
$0.834
100만 토큰당
$2.501
100만 토큰당
curl "https://router-api.0g.ai/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-d '{
"model": "hy4-preview",
"messages": [
{"role": "user", "content": "Hello!"}
],
"stream": true
}'TEE 인증
verify_tee로 온체인 서명 인증을 요청하세요. 응답에는 trace에 tee_verified 필드가 포함됩니다.
{
"model": "hy4-preview",
"messages": [{"role": "user", "content": "Hello!"}],
"verify_tee": true
}제공자 라우팅
X-0G-Provider-* 요청 헤더를 사용하여 요청을 처리할 제공자를 제어합니다.
X-0G-Provider-Address는 제공자를 고정하고, X-0G-Provider-Identity는 해당 제공자의 업스트림 중 어느 것을 통해 라우팅할지 고정합니다. 두 값 모두 GET /v1/providers의 address 및 provider_identity 필드에서 가져옵니다. 이 둘을 함께 사용하면 특정 제공자의 특정 업스트림 하나를 지정합니다. 둘 다 보내지 않으면 라우터는 이전과 똑같이 가격과 상태에 따라 선택합니다.
curl "https://router-api.0g.ai/v1/chat/completions" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-H "X-0G-Provider-Address: <PROVIDER_ADDRESS>" \
-H "X-0G-Provider-Identity: <UPSTREAM>" \
-H "X-0G-Provider-Sort: latency" \
-H "X-0G-Provider-Allow-Fallbacks: true" \
-d '{
"model": "hy4-preview",
"messages": [{"role": "user", "content": "Hello!"}]
}'