mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
- Set force_polling=True in awatch to improve file detection reliability - Bump version from 0.3.1.8 to 0.3.1.9
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.9"
|
|
|
|
__all__ = [
|
|
"config",
|
|
"core",
|
|
"extension",
|
|
"memory",
|
|
"ReMe",
|
|
]
|
|
|
|
"""
|
|
conda create -n fl_test2 python=3.10
|
|
conda activate fl_test2
|
|
conda env remove -n fl_test2
|
|
"""
|