diff --git a/cognee/infrastructure/databases/vector/create_vector_engine.py b/cognee/infrastructure/databases/vector/create_vector_engine.py index 134a8e9fc..b1d185755 100644 --- a/cognee/infrastructure/databases/vector/create_vector_engine.py +++ b/cognee/infrastructure/databases/vector/create_vector_engine.py @@ -38,8 +38,10 @@ def create_vector_engine(config: VectorConfig, embedding_engine): db_host = relational_config.db_host db_port = relational_config.db_port db_name = relational_config.db_name - - connection_string: str = f"postgresql+asyncpg://{db_username}:{db_password}@{db_host}:{db_port}/{db_name}" + + connection_string: str = ( + f"postgresql+asyncpg://{db_username}:{db_password}@{db_host}:{db_port}/{db_name}" + ) return PGVectorAdapter(connection_string, config["vector_db_key"],