LLM
BF16
New
THIRD-PARTY
Context Length: 131069
Playground
Ask me anything :)
Press Tab to automatically fill the input with the placeholder text
What can I do in SF?
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/QwQ-32B",
"max_tokens": 1024,
"temperature": 0.6,
"top_p": 0.95
}
response = requests.post(url, headers=headers, json=data)
print(response.json())