SmallBot / app.py
hertogateis's picture
Update app.py
85ab20e verified
raw
history blame
630 Bytes
import requests
url = "https://api.hyperbolic.xyz/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtaXRyYWxlc3RhcmlwZXJzYWRhQGdtYWlsLmNvbSIsImlhdCI6MTczNjUwMzQxMX0.yuIoZsH1jouAlixx_h_eQ-bltZ1sg4alrJHMHr1axvA"
}
data = {
"messages": [
{
"role": "user",
"content": "What can I do in SF?"
}
],
"model": "deepseek-ai/DeepSeek-V3",
"max_tokens": 512,
"temperature": 0.1,
"top_p": 0.9
}
response = requests.post(url, headers=headers, json=data)
print(response.json())