Skip to content
Snippets Groups Projects
Commit 5751ddee authored by James Briggs's avatar James Briggs
Browse files

fix: update to allow latest pinecone versions

parent c7d82c55
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath("../..")) # Source code dir relative to this
project = "Semantic Router"
copyright = "2024, Aurelio AI"
author = "Aurelio AI"
release = "0.0.68"
release = "0.0.69"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
......
This diff is collapsed.
[tool.poetry]
name = "semantic-router"
version = "0.0.68"
version = "0.0.69"
description = "Super fast semantic router for AI decision making"
authors = ["Aurelio AI <hello@aurelio.ai>"]
readme = "README.md"
......@@ -22,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}
......@@ -42,7 +42,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"]
......
......@@ -4,4 +4,4 @@ from semantic_router.route import Route
__all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"]
__version__ = "0.0.68"
__version__ = "0.0.69"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment