NikhilSetiya
commited on
Commit
·
567da63
1
Parent(s):
320ca4d
Fix: Update Groq API endpoint and clean config files
Browse files
agent.py
CHANGED
@@ -16,7 +16,7 @@ def load_prompt(filename):
|
|
16 |
def call_groq(system_prompt, user_input):
|
17 |
headers = {"Authorization": f"Bearer {GROQ_API_KEY}"}
|
18 |
payload = {
|
19 |
-
"model": "
|
20 |
"messages": [
|
21 |
{"role": "system", "content": system_prompt},
|
22 |
{"role": "user", "content": user_input}
|
|
|
16 |
def call_groq(system_prompt, user_input):
|
17 |
headers = {"Authorization": f"Bearer {GROQ_API_KEY}"}
|
18 |
payload = {
|
19 |
+
"model": "deepseek-r1-distill-llama-70b",
|
20 |
"messages": [
|
21 |
{"role": "system", "content": system_prompt},
|
22 |
{"role": "user", "content": user_input}
|