Update app.py
Browse files
app.py
CHANGED
@@ -285,5 +285,9 @@ if __name__ == "__main__":
|
|
285 |
|
286 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
287 |
|
|
|
|
|
|
|
|
|
288 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
289 |
demo.launch(debug=True, share=False)
|
|
|
285 |
|
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)
|