Update main.py

This commit is contained in:
2026-06-02 07:21:56 +00:00
parent 6acc2077e5
commit 5a87389855
+3 -7
View File
@@ -1,10 +1,6 @@
""" # Entry point simply imports and runs the agent.
Entry point for the RAG agent. Delegates to agent.py.
"""
import sys from agent import main
from agent import __main__ as agent_main
if __name__ == "__main__": if __name__ == "__main__":
agent_main() main()