Skip to content

Commit 9001c17

Browse files
chore(dependency): use changed vector binaries folder
In sqliteai-vector>=0.9.26 the binaries folder is `sqlite_vector`
1 parent 1e24f17 commit 9001c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlite_rag/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def initialize(conn: sqlite3.Connection, settings: Settings) -> sqlite3.Connecti
2929
)
3030
)
3131
conn.load_extension(
32-
str(importlib.resources.files("sqlite-vector.binaries") / "vector")
32+
str(importlib.resources.files("sqlite_vector.binaries") / "vector")
3333
)
3434
except sqlite3.OperationalError as e:
3535
raise RuntimeError(

0 commit comments

Comments
 (0)