From 2cc9dd4d844919cd70afaf5d9ae2bdabf0f5032d Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 1 Oct 2025 17:34:51 -0300 Subject: [PATCH] changed config path --- src/config/config_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config_manager.py b/src/config/config_manager.py index 6e891c5c..da059d0d 100644 --- a/src/config/config_manager.py +++ b/src/config/config_manager.py @@ -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: