Files
task-6a1864f78a94f887e50d46da/main.py
T
2026-06-02 07:20:26 +00:00

11 lines
161 B
Python

"""
Entry point for the RAG agent. Delegates to agent.py.
"""
import sys
from agent import __main__ as agent_main
if __name__ == "__main__":
agent_main()