Skip to content
Merged
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
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,16 @@ dev = ["pytest", "pytest-asyncio", "ruff", "mypy", "pre-commit"]

embeddings = ["sentence-transformers>=3.3.1"]
colpali = ["colpali-engine"]
lancedb = ["lancedb>=0.25.0"]
lancedb = ["lancedb>=0.25.0", "pyarrow>=19.0.0"]

# We need to repeat the dependency above to make it available for the `all` feature.
# Indirect dependencies such as "cocoindex[embeddings]" will not work for local development.
all = ["sentence-transformers>=3.3.1", "colpali-engine", "lancedb>=0.25.0"]
all = [
"sentence-transformers>=3.3.1",
"colpali-engine",
"lancedb>=0.25.0",
"pyarrow>=19.0.0",
]

# This is the set of dependencies that needs to be installed for the CI workflow.
all-ci = ["pytest", "pytest-asyncio", "mypy", "pydantic>=2.11.9"]
Expand Down
Loading