mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-08 22:21:15 +00:00
14 lines
341 B
Python
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",
|
|
]
|