From a993cbe7eb37fc9ee479e0a49a0506eff51b3572 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Fri, 27 Jun 2025 14:17:10 +0200 Subject: [PATCH] refactor: add comment --- cognee/infrastructure/databases/graph/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cognee/infrastructure/databases/graph/config.py b/cognee/infrastructure/databases/graph/config.py index 34c144a3d..203ef4139 100644 --- a/cognee/infrastructure/databases/graph/config.py +++ b/cognee/infrastructure/databases/graph/config.py @@ -46,6 +46,7 @@ class GraphConfig(BaseSettings): model_config = SettingsConfigDict(env_file=".env", extra="allow", populate_by_name=True) # Model validator updates graph_filename and path dynamically after class creation based on current database provider + # If no specific graph_filename or path are provided @pydantic.model_validator(mode="after") def fill_derived(cls, values): provider = values.graph_database_provider.lower()