try few things
This commit is contained in:
parent
10cf46b4a9
commit
357938a73b
1 changed files with 4 additions and 1 deletions
|
|
@ -106,7 +106,10 @@ class InfrastructureConfig():
|
|||
self.database_directory_path = self.system_root_directory + "/" + config.db_path
|
||||
|
||||
if (config_entity is None or config_entity == "database_file_path") and self.database_file_path is None:
|
||||
self.database_file_path = self.system_root_directory + "/" + config.db_path + "/" + config.db_name
|
||||
try:
|
||||
self.database_file_path = self.system_root_directory + "/" + config.db_path + "/" + config.db_name
|
||||
except:
|
||||
self.database_file_path = self.system_root_directory + "/" + "databases" + "/" + "cognee.db"
|
||||
|
||||
if (config_entity is None or config_entity == "vector_engine") and self.vector_engine is None:
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue