11 lines
161 B
Python
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()
|