Update app.py by commenting out the agent call and answer
Browse files
app.py
CHANGED
|
@@ -50,9 +50,9 @@ class BasicAgent:
|
|
| 50 |
prompt_templates=prompt_templates
|
| 51 |
)
|
| 52 |
|
| 53 |
-
agent_answer = agent.run(question)
|
| 54 |
|
| 55 |
-
print(f"Agent Answer: {agent_answer}")
|
| 56 |
|
| 57 |
return fixed_answer
|
| 58 |
|
|
|
|
| 50 |
prompt_templates=prompt_templates
|
| 51 |
)
|
| 52 |
|
| 53 |
+
# agent_answer = agent.run(question)
|
| 54 |
|
| 55 |
+
# print(f"Agent Answer: {agent_answer}")
|
| 56 |
|
| 57 |
return fixed_answer
|
| 58 |
|