LLM
FP8
New
Context Length: 262144
LLM
FP8
New
Context Length: 262144

Control Bar

API

import requests url = "https://api.hyperbolic.xyz/v1/chat/completions" headers = { "Content-Type": "application/json", "Authorization": "Bearer <api-key>" } data = { "messages": [{ "role": "user", "content": "What can I do in SF?" }], "model": "Qwen/Qwen3-235B-A22B-Instruct-2507", "max_tokens": 512, "temperature": 0.7, "top_p": 0.8 } response = requests.post(url, headers=headers, json=data) print(response.json())