LLM
BF16
32K Context
$0.80 Input / $0.80 Output
Control Bar
Output Length
14096
Temperature
01
Top-P
01
Top-K
1100
Repetition Penalty
12
System Prompt
API
import requests

url = "https://api.atlascloud.ai/v1/chat/completions"
headers = {
    "Content-Type": "application/json",
    "Authorization": "Bearer $ATLASCLOUD_API_KEY"
}
data = {
    "model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
    "messages": [
        {
            "role": "user",
            "content": "what is difference between http and https"
        }
    ],
    "max_tokens": 1024,
    "temperature": 0.7,
    "top_p": 0.9,
    "top_k": 50,
    "repetition_penalty": 1.1,
    "stream": True
}
  
response = requests.post(url, headers=headers, json=data)
print(response.json())