ReMe/reme/__init__.py
jinliyl 4f63fbf197
refactor(memory): update conversation continuity context handling (#170)
* refactor(memory): update conversation continuity context handling

* chore(version): bump version to 0.3.1.1
2026-03-19 23:40:56 +08:00

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
"""