This commit is contained in:
2026-06-01 16:48:50 +00:00
parent 0cac795721
commit 352095e62c
+14
View File
@@ -0,0 +1,14 @@
from agent import agent
import os
def main():
print("RAG Agent ready. Type 'exit' to quit.")
while True:
q = input("You: ")
if q.lower() in {"exit", "quit"}:
break
resp = agent.run(q)
print(f"Agent: {resp}")
if __name__ == "__main__":
main()