Skip to content

Commit 657952f

Browse files
committed
fix(python): dependencies
1 parent 0bff2cf commit 657952f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

db/vector_operations.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ def load_sqlite_vector_extension(conn: sqlite3.Connection) -> None:
7373
# version function may not be present; ignore
7474
pass
7575
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}")
7876
raise RuntimeError(f"Failed to load sqlite-vector extension: {e}") from e
7977

8078

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ dependencies = [
1313
"tomli>=2.0; python_version < '3.11'",
1414
"python-dotenv>=1.0",
1515
"openai>=2.2.0",
16-
"llama-index>=0.5.9",
16+
"llama-index[langchain]>=0.5.9",
1717
"sqliteai-vector>=0.9.51",
1818
"pydantic>=2.0",
19+
"tree-sitter>=0.21.3",
20+
"tree-sitter-languages>=1.10.2",
1921
]
2022

2123
[build-system]

0 commit comments

Comments
 (0)