agent_1 / test_research.py
jojopp's picture
personalised blog
5567345
raw
history blame
342 Bytes
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()