Update app.py to run the agent
Browse files
app.py
CHANGED
|
@@ -50,7 +50,7 @@ class BasicAgent:
|
|
| 50 |
prompt_templates=prompt_templates
|
| 51 |
)
|
| 52 |
|
| 53 |
-
agent_answer = agent.
|
| 54 |
|
| 55 |
print(f"Agent Answer: {agent_answer}")
|
| 56 |
|
|
|
|
| 50 |
prompt_templates=prompt_templates
|
| 51 |
)
|
| 52 |
|
| 53 |
+
agent_answer = agent.run(question)
|
| 54 |
|
| 55 |
print(f"Agent Answer: {agent_answer}")
|
| 56 |
|