Spaces:
Running
Running
File size: 406 Bytes
53ea588 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""Compatibility shim.
Some environments may still reference `./rbc-fees-agent/fees_agent.py:agent`.
This file re-exports the ReAct agent defined in `react_agent.py`.
"""
try:
from .react_agent import agent # noqa: F401
except ImportError:
import os as _os
import sys as _sys
_sys.path.append(_os.path.dirname(__file__))
from react_agent import agent # type: ignore # noqa: F401
|