init
This commit is contained in:
25
AlgoriAgent/src/agentscope/agents/__init__.py
Normal file
25
AlgoriAgent/src/agentscope/agents/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
""" Import all agent related modules in the package. """
|
||||
from .agent import AgentBase, DistConf
|
||||
from .operator import Operator
|
||||
from .dialog_agent import DialogAgent
|
||||
from .dict_dialog_agent import DictDialogAgent
|
||||
from .user_agent import UserAgent
|
||||
from .text_to_image_agent import TextToImageAgent
|
||||
from .rpc_agent import RpcAgent
|
||||
from .react_agent import ReActAgent
|
||||
from .rag_agent import LlamaIndexAgent
|
||||
|
||||
|
||||
__all__ = [
|
||||
"AgentBase",
|
||||
"Operator",
|
||||
"DialogAgent",
|
||||
"DictDialogAgent",
|
||||
"TextToImageAgent",
|
||||
"UserAgent",
|
||||
"ReActAgent",
|
||||
"DistConf",
|
||||
"RpcAgent",
|
||||
"LlamaIndexAgent",
|
||||
]
|
||||
Reference in New Issue
Block a user