Update app.py
Browse files
app.py
CHANGED
|
@@ -168,9 +168,9 @@ OR
|
|
| 168 |
FINAL: your_precise_answer"""
|
| 169 |
|
| 170 |
response = self.client.chat.completions.create(
|
| 171 |
-
|
| 172 |
-
model ="gpt-5.2-chat-latest",
|
| 173 |
-
temperature=
|
| 174 |
messages=[{"role": "system", "content": "You are a scientific agent. Always use tools to verify facts before answering."},
|
| 175 |
{"role": "user", "content": prompt}]
|
| 176 |
)
|
|
|
|
| 168 |
FINAL: your_precise_answer"""
|
| 169 |
|
| 170 |
response = self.client.chat.completions.create(
|
| 171 |
+
model="gpt-4o-mini",
|
| 172 |
+
#model ="gpt-5.2-chat-latest",
|
| 173 |
+
temperature=0,
|
| 174 |
messages=[{"role": "system", "content": "You are a scientific agent. Always use tools to verify facts before answering."},
|
| 175 |
{"role": "user", "content": prompt}]
|
| 176 |
)
|