14 lines
340 B
Python
14 lines
340 B
Python
"""Top‑level 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 |