mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-15 23:31:05 +00:00
* refactor(file_store): simplify ChromaDB client initialization and improve file truncation logic - Remove shutil import and _create_chroma_client method from chroma_file_store.py - Directly initialize ChromaDB PersistentClient in start method without retry logic - Reduce DEFAULT_MAX_BYTES from 100KB to 50KB in file_utils.py - Update truncation notice format to provide clearer continuation instructions - Add _truncate_fresh and _retruncate functions for better text truncation handling - Replace inline truncation logic with dedicated function calls in file_utils.py - Rename skills_tool_ids to md_file_tool_ids in tool_result_compactor.py - Update file detection logic to identify any .md files instead of only skill.md - Create comprehensive unit tests for truncation functionality in test_truncate_text_output.py * chore(version): bump version to 0.3.1.6 - Update __version__ from 0.3.1.5 to 0.3.1.6 in __init__.py
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.6"
|
|
|
|
__all__ = [
|
|
"config",
|
|
"core",
|
|
"extension",
|
|
"memory",
|
|
"ReMe",
|
|
]
|
|
|
|
"""
|
|
conda create -n fl_test2 python=3.10
|
|
conda activate fl_test2
|
|
conda env remove -n fl_test2
|
|
"""
|