mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(memory): update conversation continuity context handling * chore(version): bump version to 0.3.1.1
23 lines
328 B
Python
23 lines
328 B
Python
"""ReMe"""
|
|
|
|
from . import config
|
|
from . import core
|
|
from . import extension
|
|
from . import memory
|
|
from .reme import ReMe
|
|
|
|
__version__ = "0.3.1.1"
|
|
|
|
__all__ = [
|
|
"config",
|
|
"core",
|
|
"extension",
|
|
"memory",
|
|
"ReMe",
|
|
]
|
|
|
|
"""
|
|
conda create -n fl_test2 python=3.10
|
|
conda activate fl_test2
|
|
conda env remove -n fl_test2
|
|
"""
|