Files
task-6a1d75e5fd30e81cf3126b1a/agent.py
T
2026-06-04 16:07:27 +00:00

14 lines
340 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""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