LLM
FP8
THIRD-PARTY
Context Length: 32768
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-Preview",
"max_tokens": 512,
"temperature": 0.1,
"top_p": 0.9
}
response = requests.post(url, headers=headers, json=data)
print(response.json())