Last active
February 18, 2025 11:52
-
-
Save domingogallardo/3b9ae594c612de727fecea0c38a748f2 to your computer and use it in GitHub Desktop.
deepseek fireworks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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