ReMe/reme/__init__.py
jinliyl fc4a5398a8
fix(index): make embedding rebuild explicit and scoped (#508)
* fix(index): make embedding rebuild explicit and scoped

* fix(index): harden scoped reindex completion

* fix(index): guard embedding space transitions

* fix(index): serialize reindex with mutations

* docs(index): clarify scoped reindex semantics

* docs(index): explain synchronous checkpoint snapshots

* fix(index): serialize checkpoint publication
2026-08-28 23:25:17 +08:00

33 lines
687 B
Python

"""ReMe CLI package."""
__version__ = "0.4.1.10"
from . import config
from . import constants
from . import enumeration
from . import schema
from . import steps
from . import utils
from .components import BaseComponent, R
from .application import Application
from .plugin import Backend, Plugin
from .reme import ReMe
# Component and Step packages above have completed their decorator-driven
# bootstrap. Runtime code receives mutable copies of this immutable template.
R.freeze()
__all__ = [
"Application",
"BaseComponent",
"Backend",
"Plugin",
"ReMe",
# submodules
"config",
"constants",
"enumeration",
"schema",
"steps",
"utils",
]