From 6cc940619463926b362f3f67ffe717b7e69d8581 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sun, 26 May 2024 13:25:18 +0200 Subject: [PATCH] Updates to the configs --- cognee/infrastructure/databases/relational/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/infrastructure/databases/relational/config.py b/cognee/infrastructure/databases/relational/config.py index b9c8d9d65..472a792e0 100644 --- a/cognee/infrastructure/databases/relational/config.py +++ b/cognee/infrastructure/databases/relational/config.py @@ -17,7 +17,7 @@ class RelationalConfig(BaseSettings): db_path=db_path ) database_path: str = os.path.join(config.system_root_directory, "databases") - database_directory_path: str = os.path.join(config.db_path, "cognee.db") + database_directory_path: str = os.path.join(db_path, "cognee.db") model_config = SettingsConfigDict(env_file = ".env", extra = "allow")