Update agent.py
Browse files
agent.py
CHANGED
@@ -130,8 +130,8 @@ class GaiaAgent:
|
|
130 |
|
131 |
def retry_fallback(self, question):
|
132 |
try:
|
133 |
-
prompt = f"Answer concisely and factually:
|
134 |
-
Question: {question}"
|
135 |
return self.ask(prompt)
|
136 |
except:
|
137 |
return "[RETRY FAILED]"
|
|
|
130 |
|
131 |
def retry_fallback(self, question):
|
132 |
try:
|
133 |
+
prompt = f"""Answer concisely and factually:
|
134 |
+
Question: {question}"""
|
135 |
return self.ask(prompt)
|
136 |
except:
|
137 |
return "[RETRY FAILED]"
|