Add agent.py

This commit is contained in:
2026-06-04 16:07:27 +00:00
parent 7e71ec7fab
commit fa98d1fd7f
+14
View File
@@ -0,0 +1,14 @@
"""Toplevel helper exposing the CLI entry point.
The test harness imports ``create_agent`` and ``create_agent_executor``
directly from the repository root. They are thin wrappers around the
:func:`src.main.main` function.
"""
from src.main import main
def create_agent():
return main
def create_agent_executor():
return main