From 43df9aa547571f0c00e0cc6f26cd93cdba501cd6 Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Wed, 11 Jun 2025 16:50:16 +0200 Subject: [PATCH] Feature: Fixes url typo in general adapters (#969) ## Description Fixes url typo in general adapters ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --- cognee/infrastructure/databases/vector/create_vector_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/infrastructure/databases/vector/create_vector_engine.py b/cognee/infrastructure/databases/vector/create_vector_engine.py index 0c5ba1df4..c6737ac3c 100644 --- a/cognee/infrastructure/databases/vector/create_vector_engine.py +++ b/cognee/infrastructure/databases/vector/create_vector_engine.py @@ -43,7 +43,7 @@ def create_vector_engine( adapter = supported_databases[vector_db_provider] return adapter( - utl=vector_db_url, + url=vector_db_url, api_key=vector_db_key, embedding_engine=embedding_engine, )