Update agent.py
Browse files
agent.py
CHANGED
@@ -47,8 +47,7 @@ You are a GAIA benchmark assistant, who is given a question and an answer. Read
|
|
47 |
|
48 |
completion = client.chat.completions.create(
|
49 |
messages = [{"role": "user", "content": [{"type": "text", "text": prompt_template}]}],
|
50 |
-
model = MODEL_ID_2
|
51 |
-
temperature = 0
|
52 |
)
|
53 |
|
54 |
final_answer = completion.choices[0].message.content
|
|
|
47 |
|
48 |
completion = client.chat.completions.create(
|
49 |
messages = [{"role": "user", "content": [{"type": "text", "text": prompt_template}]}],
|
50 |
+
model = MODEL_ID_2
|
|
|
51 |
)
|
52 |
|
53 |
final_answer = completion.choices[0].message.content
|