medTranscript_QA_agent / run_agent.py
atrmkj's picture
added first version of langgraph agent implementation w memory
21dfff9
raw
history blame contribute delete
365 Bytes
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()