ReMe/reme_ai/agent/__init__.py

14 lines
341 B
Python

"""Agent module for ReAct and tool-based agent implementations.
This module provides submodules for different types of agent operations:
- react: ReAct (Reasoning and Acting) agent implementations
- tools: Mock search tools for testing and demonstration
"""
from . import react
from . import tools
__all__ = [
"react",
"tools",
]