mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
14 lines
367 B
Python
14 lines
367 B
Python
"""Configuration module for ReMe.
|
|
|
|
This module provides configuration parsing capabilities for the ReMe framework.
|
|
It includes:
|
|
|
|
- ConfigParser: Configuration parser class that extends PydanticConfigParser
|
|
to provide configuration parsing with awareness of the current module location
|
|
"""
|
|
|
|
from .config_parser import ConfigParser
|
|
|
|
__all__ = [
|
|
"ConfigParser",
|
|
]
|