Skip to content

Commit

Permalink
chore: flexible deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescalam committed May 16, 2024
1 parent 8ac959a commit 5d9f62c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ packages = [{include = "semantic_router"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pydantic = "^2.5.3"
openai = "^1.10.0"
cohere = "^5.00"
mistralai= {version = "^0.0.12", optional = true}
openai = ">=1.10.0,<2.0.0"
cohere = ">=5.00,<6.00"
mistralai= {version = ">=0.0.12,<0.1.0", optional = true}
numpy = "^1.25.2"
colorlog = "^6.8.0"
pyyaml = "^6.0.1"
pinecone-text = {version = "^0.7.1", optional = true}
pinecone-text = {version = ">=0.7.1,<0.8.0", optional = true}
fastembed = {version = "^0.2.4", optional = true, python = "<3.12"}
torch = {version = "^2.1.0", optional = true}
torch = {version = ">=2.1.0,<2.6.0", optional = true}
transformers = {version = "^4.36.2", optional = true}
llama-cpp-python = {version = "^0.2.28", optional = true}
colorama = "^0.4.6"
pinecone-client = {version="^3.0.0", optional = true}
regex = "^2023.12.25"
torchvision = { version = "^0.17.0", optional = true}
pillow = { version = "^10.2.0", optional = true}
pinecone-client = {version=">=3.0.0,<4.0.0", optional = true}
regex = ">=2023.12.25"
torchvision = { version = ">=0.17.0,<0.18.0", optional = true}
pillow = { version = ">=10.2.0,<11.0.0", optional = true}
tiktoken = ">=0.6.0,<1.0.0"
matplotlib = { version = "^3.8.3", optional = true}
qdrant-client = {version = "^1.8.0", optional = true}
Expand Down

0 comments on commit 5d9f62c

Please sign in to comment.