From b96a0b31774d78407e12b10379d83cd7314bba25 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sun, 26 May 2024 13:39:38 +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 472a792e0..4a30acd3d 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(db_path, "cognee.db") + database_directory_path: str = db_path model_config = SettingsConfigDict(env_file = ".env", extra = "allow")