From ee2a8ec8d064df8e2e359cd45368f33e4cd3051c Mon Sep 17 00:00:00 2001 From: James Briggs Date: Sun, 28 Apr 2024 08:46:02 +0800 Subject: [PATCH] chore: update version to 0.0.35 --- docs/01-save-load-from-file.ipynb | 2 +- docs/02-dynamic-routes.ipynb | 2 +- docs/05-local-execution.ipynb | 2 +- docs/06-threshold-optimization.ipynb | 2 +- docs/07-multi-modal.ipynb | 2 +- docs/09-route-filter.ipynb | 2 +- docs/encoders/google.ipynb | 2 +- docs/examples/unstructured-element-splitter.ipynb | 2 +- pyproject.toml | 2 +- semantic_router/__init__.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/01-save-load-from-file.ipynb b/docs/01-save-load-from-file.ipynb index d0afb0e..de71ef9 100644 --- a/docs/01-save-load-from-file.ipynb +++ b/docs/01-save-load-from-file.ipynb @@ -36,7 +36,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install -qU semantic-router==0.0.34" + "!pip install -qU semantic-router" ] }, { diff --git a/docs/02-dynamic-routes.ipynb b/docs/02-dynamic-routes.ipynb index 23eea22..5dbcc94 100644 --- a/docs/02-dynamic-routes.ipynb +++ b/docs/02-dynamic-routes.ipynb @@ -48,7 +48,7 @@ }, "outputs": [], "source": [ - "!pip install -qU semantic-router==0.0.34" + "!pip install -qU semantic-router" ] }, { diff --git a/docs/05-local-execution.ipynb b/docs/05-local-execution.ipynb index e910057..24f78c9 100644 --- a/docs/05-local-execution.ipynb +++ b/docs/05-local-execution.ipynb @@ -41,7 +41,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install -qU \"semantic-router[local]==0.0.34\"" + "!pip install -qU \"semantic-router[local]\"" ] }, { diff --git a/docs/06-threshold-optimization.ipynb b/docs/06-threshold-optimization.ipynb index 0591221..1aa1550 100644 --- a/docs/06-threshold-optimization.ipynb +++ b/docs/06-threshold-optimization.ipynb @@ -29,7 +29,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install -qU \"semantic-router[local]==0.0.34\"" + "!pip install -qU \"semantic-router[local]\"" ] }, { diff --git a/docs/07-multi-modal.ipynb b/docs/07-multi-modal.ipynb index 15befb4..61fe580 100644 --- a/docs/07-multi-modal.ipynb +++ b/docs/07-multi-modal.ipynb @@ -100,7 +100,7 @@ ], "source": [ "!pip install -qU \\\n", - " \"semantic-router[vision]==0.0.34\" \\\n", + " \"semantic-router[vision]\" \\\n", " datasets==2.17.0" ] }, diff --git a/docs/09-route-filter.ipynb b/docs/09-route-filter.ipynb index 22c3af2..28b2645 100644 --- a/docs/09-route-filter.ipynb +++ b/docs/09-route-filter.ipynb @@ -41,7 +41,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install -qU semantic-router==0.0.34" + "!pip install -qU semantic-router" ] }, { diff --git a/docs/encoders/google.ipynb b/docs/encoders/google.ipynb index 5aabdd1..38da5ea 100644 --- a/docs/encoders/google.ipynb +++ b/docs/encoders/google.ipynb @@ -41,7 +41,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install -qU \"semantic-router[google]==0.0.34\"" + "!pip install -qU \"semantic-router[google]\"" ] }, { diff --git a/docs/examples/unstructured-element-splitter.ipynb b/docs/examples/unstructured-element-splitter.ipynb index c53352c..c9561b7 100644 --- a/docs/examples/unstructured-element-splitter.ipynb +++ b/docs/examples/unstructured-element-splitter.ipynb @@ -16,7 +16,7 @@ "# It may take longer to install the package\n", "!pip install -qU \\\n", " \"unstructured[pdf]==0.12.4\" \\\n", - " \"semantic-router==0.0.34\"" + " semantic-router" ] }, { diff --git a/pyproject.toml b/pyproject.toml index 06d314d..33d8c6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-router" -version = "0.0.34" +version = "0.0.35" description = "Super fast semantic router for AI decision making" authors = [ "James Briggs ", diff --git a/semantic_router/__init__.py b/semantic_router/__init__.py index 23b3df7..4ff8ad2 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -4,4 +4,4 @@ __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"] -__version__ = "0.0.34" +__version__ = "0.0.35"