mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-16 23:41:10 +00:00
28 lines
400 B
Python
28 lines
400 B
Python
"""ReMe"""
|
|
|
|
from . import agent
|
|
from . import config
|
|
from . import core
|
|
from . import tool
|
|
from . import workflow
|
|
from .reme import ReMe
|
|
from .reme_fs import ReMeFs
|
|
|
|
__all__ = [
|
|
"agent",
|
|
"config",
|
|
"core",
|
|
"tool",
|
|
"workflow",
|
|
"ReMe",
|
|
"ReMeFs",
|
|
]
|
|
|
|
__version__ = "0.3.0.0a2"
|
|
|
|
|
|
"""
|
|
conda create -n fl_test2 python=3.10
|
|
conda activate fl_test2
|
|
conda env remove -n fl_test2
|
|
"""
|