/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
config/__init__.py
35 строк
638 B
vyokky
config doc and readme
04 ноя 2025, 09:39
04 ноя 2025, 09:39
dd6661f
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ UFO² Configuration System Modern, modular configuration system with type safety and backward compatibility. """ from config.config_loader import ( ConfigLoader, get_ufo_config, get_galaxy_config, clear_config_cache, ) from config.config_schemas import ( UFOConfig, GalaxyConfig, AgentConfig, SystemConfig, RAGConfig, ) __all__ = [ "ConfigLoader", "get_ufo_config", "get_galaxy_config", "clear_config_cache", "UFOConfig", "GalaxyConfig", "AgentConfig", "SystemConfig", "RAGConfig", ]