29 lines
520 B
Python
29 lines
520 B
Python
"""
|
|
Centralized configuration package for TradingAgents.
|
|
"""
|
|
from .manager import (
|
|
settings,
|
|
get_config,
|
|
update_config,
|
|
set_config,
|
|
get_config_value,
|
|
get_nested_config,
|
|
get_redis_config,
|
|
get_external_config,
|
|
get_rq_config,
|
|
initialize_config
|
|
)
|
|
|
|
__all__ = [
|
|
'settings',
|
|
'get_config',
|
|
'update_config',
|
|
'set_config',
|
|
'get_config_value',
|
|
'get_nested_config',
|
|
'get_redis_config',
|
|
'get_external_config',
|
|
'get_rq_config',
|
|
'initialize_config'
|
|
]
|