changed config path

This commit is contained in:
Lucas Oliveira 2025-10-01 17:34:51 -03:00
parent 8bf5631e9b
commit 2cc9dd4d84

View file

@ -73,7 +73,7 @@ class ConfigManager:
Args:
config_file: Path to configuration file. Defaults to 'config.yaml' in project root.
"""
self.config_file = Path(config_file) if config_file else Path("config.yaml")
self.config_file = Path(config_file) if config_file else Path("config/config.yaml")
self._config: Optional[OpenRAGConfig] = None
def load_config(self) -> OpenRAGConfig: