We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bff2cf commit 657952fCopy full SHA for 657952f
2 files changed
db/vector_operations.py
@@ -73,8 +73,6 @@ def load_sqlite_vector_extension(conn: sqlite3.Connection) -> None:
73
# version function may not be present; ignore
74
pass
75
except Exception as e:
76
- # CRASH THE PROGRAM: This is intentional and mandatory
77
- logger.error(f"FATAL: Failed to load sqlite-vector extension: {e}")
78
raise RuntimeError(f"Failed to load sqlite-vector extension: {e}") from e
79
80
pyproject.toml
@@ -13,9 +13,11 @@ dependencies = [
13
"tomli>=2.0; python_version < '3.11'",
14
"python-dotenv>=1.0",
15
"openai>=2.2.0",
16
- "llama-index>=0.5.9",
+ "llama-index[langchain]>=0.5.9",
17
"sqliteai-vector>=0.9.51",
18
"pydantic>=2.0",
19
+ "tree-sitter>=0.21.3",
20
+ "tree-sitter-languages>=1.10.2",
21
]
22
23
[build-system]
0 commit comments