medTranscript_QA_agent / run_agent.py
atrmkj's picture
initial push
52f4b0f
raw
history blame
362 Bytes
from agent import agent_respond
def main():
print("Welcome to the Healthcare Assistant!")
while True:
question = input("\nEnter your question (or type 'exit' to quit): ")
if question.lower() == 'exit':
break
answer = agent_respond(question)
print(f"\Answer:\n{answer}")
if __name__ == "__main__":
main()