Update app.py
Browse files
app.py
CHANGED
@@ -286,8 +286,8 @@ if __name__ == "__main__":
|
|
286 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
287 |
|
288 |
# Test the agent
|
289 |
-
|
290 |
-
|
291 |
|
292 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
293 |
demo.launch(debug=True, share=False)
|
|
|
286 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
287 |
|
288 |
# Test the agent
|
289 |
+
agent = BasicAgent()
|
290 |
+
agent.agent.run("What is 2+2?")
|
291 |
|
292 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
293 |
demo.launch(debug=True, share=False)
|