From 9193eca08b0f7462bef727ddc18177ebd3fd7717 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Mon, 25 Nov 2024 15:00:02 +0100 Subject: [PATCH] Trigger GitHub Actions --- .../databases/vector/pgvector/create_db_and_tables.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cognee/infrastructure/databases/vector/pgvector/create_db_and_tables.py b/cognee/infrastructure/databases/vector/pgvector/create_db_and_tables.py index ef27e2889..f40299939 100644 --- a/cognee/infrastructure/databases/vector/pgvector/create_db_and_tables.py +++ b/cognee/infrastructure/databases/vector/pgvector/create_db_and_tables.py @@ -10,5 +10,3 @@ async def create_db_and_tables(): await vector_engine.create_database() async with vector_engine.engine.begin() as connection: await connection.execute(text("CREATE EXTENSION IF NOT EXISTS vector;")) - -