mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(embedding): update embedding model initialization and session storage paths - Remove unused inspect import from as_embedding module - Pass dimensions directly to embedding model constructor instead of using parameters - Update session state file paths to use mem_session directory instead of resource - Add mem_session_dir configuration option to application config schema - Update workspace directory creation to include new mem_session directory - Change AgentScope and Claude Code session paths to use mem_session directory - Move embedding dimensions from parameters to top-level configuration - Update AgentScope dependency version from 2.0.3 to 2.0.4 - Update integration tests to reflect new session file location paths * chore(version): bump version to 0.4.0.8 - Update __version__ from 0.4.0.7 to 0.4.0.8 in __init__.py
26 lines
454 B
Python
26 lines
454 B
Python
"""ReMe CLI package."""
|
|
|
|
__version__ = "0.4.0.8"
|
|
|
|
from . import config
|
|
from . import constants
|
|
from . import enumeration
|
|
from . import schema
|
|
from . import steps
|
|
from . import utils
|
|
from .application import Application
|
|
from .components import BaseComponent
|
|
from .reme import ReMe
|
|
|
|
__all__ = [
|
|
"Application",
|
|
"BaseComponent",
|
|
"ReMe",
|
|
# submodules
|
|
"config",
|
|
"constants",
|
|
"enumeration",
|
|
"schema",
|
|
"steps",
|
|
"utils",
|
|
]
|