mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
* feat(plugins): auto-tag generated reports * fix(logging): forward host records on Python 3.13 * refactor(tags): decouple auto tagging from index updates * fix(tags): bind auto tagging to configured index * fix(tags): preserve standalone default index * fix(tags): make auto tagging best effort
33 lines
687 B
Python
33 lines
687 B
Python
"""ReMe CLI package."""
|
|
|
|
__version__ = "0.4.1.12"
|
|
|
|
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",
|
|
]
|