Update app.py
Browse files
app.py
CHANGED
|
@@ -161,7 +161,7 @@ def run_agent(question, chat_callback):
|
|
| 161 |
callbacks=[callback_handler]
|
| 162 |
)
|
| 163 |
try:
|
| 164 |
-
result = agent_executor.run(question)
|
| 165 |
except Exception as e:
|
| 166 |
result = f"❌ Error: {str(e)}"
|
| 167 |
|
|
|
|
| 161 |
callbacks=[callback_handler]
|
| 162 |
)
|
| 163 |
try:
|
| 164 |
+
result = agent_executor.run(question+' give an approximation')
|
| 165 |
except Exception as e:
|
| 166 |
result = f"❌ Error: {str(e)}"
|
| 167 |
|