Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ vector = [
mcp = [
# 1.28.1 contains the current 1.x transport-security fixes; upstream explicitly
# recommends the <2 cap because stable v2 is a breaking line.
"mcp>=1.28.1,<2; python_version >= '3.10'",
"mcp>=1.28.1,<3; python_version >= '3.10'",
"python-multipart>=0.0.31; python_version >= '3.10'",
"starlette>=1.3.1,<2; python_version >= '3.10'",
"pydantic-settings>=2.14.2; python_version >= '3.10'",
Expand Down Expand Up @@ -140,7 +140,7 @@ all = [
"python-dotenv>=1.0",
"python-multipart>=0.0.31; python_version >= '3.10'",
"sentence-transformers>=2.7; python_version >= '3.10'",
"mcp>=1.28.1,<2; python_version >= '3.10'",
"mcp>=1.28.1,<3; python_version >= '3.10'",
"pydantic-settings>=2.14.2; python_version >= '3.10'",
"cryptography>=50.0.0; python_version >= '3.10'",
"tree-sitter>=0.23; python_version >= '3.10'",
Expand Down Expand Up @@ -183,7 +183,7 @@ test = [
# exercises the real sqlite-vec native KNN backend (k=? + filtered widening) in CI.
# 0.1.9 fixes DELETE behavior for vec0 rows with longer text primary keys.
"sqlite-vec>=0.1.9,<0.2",
"mcp>=1.28.1,<2; python_version >= '3.10'",
"mcp>=1.28.1,<3; python_version >= '3.10'",
"pydantic-settings>=2.14.2; python_version >= '3.10'",
"cryptography>=50.0.0; python_version >= '3.10'",
"tree-sitter>=0.23; python_version >= '3.10'",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ numpy>=1.24
pydantic>=2.0
python-dotenv>=1.0
sentence-transformers>=2.7; python_version >= '3.10'
mcp>=1.28.1,<2; python_version >= '3.10'
mcp>=1.28.1,<3; python_version >= '3.10'
pydantic-settings>=2.14.2; python_version >= '3.10'
cryptography>=50.0.0; python_version >= '3.10'
pypdf>=6.15.0
Loading