mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-16 23:41:10 +00:00
13 lines
342 B
Python
13 lines
342 B
Python
"""ReAct agent operations module.
|
|
|
|
This module provides ReAct (Reasoning and Acting) agent implementations for
|
|
answering user queries through iterative reasoning and search actions.
|
|
"""
|
|
|
|
from .agentic_retrieve_op import AgenticRetrieveOp
|
|
from .simple_react_op import SimpleReactOp
|
|
|
|
__all__ = [
|
|
"AgenticRetrieveOp",
|
|
"SimpleReactOp",
|
|
]
|