-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,961 additions
and
1,551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
[tool.poetry] | ||
name = "semantic-router" | ||
version = "0.0.65" | ||
version = "0.0.72" | ||
description = "Super fast semantic router for AI decision making" | ||
authors = [ | ||
"James Briggs <[email protected]>", | ||
"Siraj Aizlewood <[email protected]>", | ||
"Simonas Jakubonis <[email protected]>", | ||
"Luca Mannini <[email protected]>", | ||
"Bogdan Buduroiu <[email protected]>", | ||
"Ismail Ashraq <[email protected]>", | ||
"Daniel Griffin <[email protected]>", | ||
"Tolga Arslan <[email protected]>" | ||
] | ||
authors = ["Aurelio AI <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "semantic_router"}] | ||
license = "MIT" | ||
|
@@ -20,7 +11,7 @@ license = "MIT" | |
python = ">=3.9,<3.13" | ||
pydantic = "^2.5.3" | ||
openai = ">=1.10.0,<2.0.0" | ||
cohere = ">=5.00,<6.00" | ||
cohere = {version = ">=5.9.4,<6.00", optional = true} | ||
mistralai= {version = ">=0.0.12,<0.1.0", optional = true} | ||
numpy = "^1.25.2" | ||
colorlog = "^6.8.0" | ||
|
@@ -31,7 +22,7 @@ transformers = {version = ">=4.36.2", optional = true} | |
tokenizers = {version = ">=0.19", optional = true} | ||
llama-cpp-python = {version = ">=0.2.28,<0.2.86", optional = true} | ||
colorama = "^0.4.6" | ||
pinecone-client = {version=">=3.0.0,<4.0.0", optional = true} | ||
pinecone = {version=">=5.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} | ||
|
@@ -52,7 +43,7 @@ sphinxawesome-theme = {version = "^5.2.0", optional = true} | |
[tool.poetry.extras] | ||
hybrid = ["pinecone-text"] | ||
local = ["torch", "transformers", "tokenizers", "huggingface-hub", "llama-cpp-python"] | ||
pinecone = ["pinecone-client"] | ||
pinecone = ["pinecone"] | ||
vision = ["torch", "torchvision", "transformers", "pillow"] | ||
processing = ["matplotlib"] | ||
mistralai = ["mistralai"] | ||
|
@@ -63,6 +54,7 @@ bedrock = ["boto3", "botocore"] | |
postgres = ["psycopg2"] | ||
fastembed = ["fastembed"] | ||
docs = ["sphinx", "sphinxawesome-theme"] | ||
cohere = ["cohere"] | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
ipykernel = "^6.25.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.