File size: 365 Bytes
21dfff9
52f4b0f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from agent_v1 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()