# local_test.py from app import BasicAgent agent = BasicAgent() # Test questions test_questions = [ "What is 15 + 27?", "Calculate the square root of 144", "What is 25% of 200?" ] for q in test_questions: answer = agent(q) print(f"Q: {q}") print(f"A: {answer}") print("-" * 30)