diff --git a/README.md b/README.md index 3b6ed03b..76956d71 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ Semantic Router is a superfast decision-making layer for your LLMs and agents. Rather than waiting for slow LLM generations to make tool-use decisions, we use the magic of semantic vector space to make those decisions — _routing_ our requests using _semantic_ meaning. +#### [Read the Docs](https://docs.aurelio.ai/semantic-router/index.html) + --- ## Quickstart diff --git a/docs/source/conf.py b/docs/source/conf.py index 2184b826..a0d09c94 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,7 @@ project = "Semantic Router" copyright = "2024, Aurelio AI" author = "Aurelio AI" -release = "0.0.65" +release = "0.0.66" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 8576a4a9..97d92edf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,17 +1,8 @@ [tool.poetry] name = "semantic-router" -version = "0.0.65" +version = "0.0.66" description = "Super fast semantic router for AI decision making" -authors = [ - "James Briggs ", - "Siraj Aizlewood ", - "Simonas Jakubonis ", - "Luca Mannini ", - "Bogdan Buduroiu ", - "Ismail Ashraq ", - "Daniel Griffin ", - "Tolga Arslan " -] +authors = ["Aurelio AI "] readme = "README.md" packages = [{include = "semantic_router"}] license = "MIT" diff --git a/semantic_router/__init__.py b/semantic_router/__init__.py index 6bf6b1c9..b0b67e19 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -4,4 +4,4 @@ __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"] -__version__ = "0.0.65" +__version__ = "0.0.66"