keynes42 commited on
Commit
f6b849c
·
verified ·
1 Parent(s): 64904c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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)