Skip to content

Instantly share code, notes, and snippets.

@domingogallardo
Last active February 18, 2025 11:52
Show Gist options
  • Save domingogallardo/3b9ae594c612de727fecea0c38a748f2 to your computer and use it in GitHub Desktop.
Save domingogallardo/3b9ae594c612de727fecea0c38a748f2 to your computer and use it in GitHub Desktop.
deepseek fireworks
import requests
import json
url = "https://api.fireworks.ai/inference/v1/chat/completions"
payload = {
"model": "accounts/fireworks/models/deepseek-r1",
"max_tokens": 20480,
"top_p": 1,
"top_k": 40,
"presence_penalty": 0,
"frequency_penalty": 0,
"temperature": 0.6,
"messages": [
{
"role": "user",
"content": "¿Cómo puedo operar los números 2, 3, 6, 120 para que el resultado sea 84?"
}
]
}
headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Bearer <API-KEY>"
}
response = requests.request("POST", url, headers=headers, data=json.dumps(payload))
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment