LLM
BF16
Popular
Playground
Press Tab to automatically fill the input with the placeholder text
The capital of France is
Control Bar
API
import requests
url = "https://api.hyperbolic.xyz/v1/completions"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <api-key>"
}
data = {
"prompt": "The capital of France is",
"model": "meta-llama/Meta-Llama-3.1-405B",
"max_tokens": 512,
"temperature": 0.7,
"top_p": 0.9
}
response = requests.post(url, headers=headers, json=data)
print(response.json())