mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
Some checks are pending
CI / Documentation / Test and build documentation (push) Waiting to run
CI / Python quality / Pre-commit (push) Waiting to run
CI / Python tests / Unit Tests - py3.11 (push) Waiting to run
CI / Python tests / Unit Tests - py3.12 (push) Waiting to run
CI / Python tests / Unit Tests - py3.13 (push) Waiting to run
CI / Windows / CLI smoke - py3.11 (push) Waiting to run
Deploy / Documentation / Build documentation (push) Waiting to run
Deploy / Documentation / deploy (push) Blocked by required conditions
Security / CodeQL / Analyze javascript-typescript (push) Waiting to run
Security / CodeQL / Analyze python (push) Waiting to run
* feat: simplify plugin setup and add management CLI * fix: isolate plugin CLI import side effects * refactor: streamline plugin validation * fix: route plugin CLI arguments independently * fix: support standard plugin source layouts
19 lines
312 B
Python
19 lines
312 B
Python
"""Config"""
|
|
|
|
from .config_parser import (
|
|
deep_merge_config,
|
|
expand_env_vars,
|
|
parse_action,
|
|
parse_args,
|
|
parse_kwargs,
|
|
resolve_app_config,
|
|
)
|
|
|
|
__all__ = [
|
|
"deep_merge_config",
|
|
"expand_env_vars",
|
|
"parse_action",
|
|
"parse_args",
|
|
"parse_kwargs",
|
|
"resolve_app_config",
|
|
]
|