26 lines
657 B
Python
26 lines
657 B
Python
# -*- 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",
|
|
]
|