Update app.py
Browse files
app.py
CHANGED
|
@@ -351,6 +351,7 @@ def ask_question(message, history):
|
|
| 351 |
|
| 352 |
try:
|
| 353 |
response = agent_executor.run(prompt)
|
|
|
|
| 354 |
return response
|
| 355 |
except Exception as e:
|
| 356 |
return f"❌ Error: {str(e)}"
|
|
|
|
| 351 |
|
| 352 |
try:
|
| 353 |
response = agent_executor.run(prompt)
|
| 354 |
+
print("##########################response: ", response)
|
| 355 |
return response
|
| 356 |
except Exception as e:
|
| 357 |
return f"❌ Error: {str(e)}"
|