mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
- Changed CHROMADB_AVAILABLE flag to _CHROMADB_IMPORT_ERROR exception storage - Updated version from 0.3.1.7 to 0.3.1.8 - Modified import error handling to preserve original exception details - Removed hardcoded ImportError message in favor of dynamic exception raising - Added proper logger initialization using get_logger utility
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.8"
|
|
|
|
__all__ = [
|
|
"config",
|
|
"core",
|
|
"extension",
|
|
"memory",
|
|
"ReMe",
|
|
]
|
|
|
|
"""
|
|
conda create -n fl_test2 python=3.10
|
|
conda activate fl_test2
|
|
conda env remove -n fl_test2
|
|
"""
|