File size: 342 Bytes
5567345 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from app import agent
def test_research():
# Test the research capability
print("Researching AI in Healthcare...")
research_results = agent.run("Research recent developments in AI medical diagnosis and provide sources")
print("\nResearch Results:")
print(research_results)
if __name__ == "__main__":
test_research()
|