Skip to content
Snippets Groups Projects
Unverified Commit c3fa297b authored by James Briggs's avatar James Briggs Committed by GitHub
Browse files

Merge pull request #428 from aurelio-labs/james/v0.0.66

chore: v0.0.66
parents b361dc98 e3d7ea77
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,8 @@ ...@@ -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. 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 ## Quickstart
......
...@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath("../..")) # Source code dir relative to this ...@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath("../..")) # Source code dir relative to this
project = "Semantic Router" project = "Semantic Router"
copyright = "2024, Aurelio AI" copyright = "2024, Aurelio AI"
author = "Aurelio AI" author = "Aurelio AI"
release = "0.0.65" release = "0.0.66"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
......
[tool.poetry] [tool.poetry]
name = "semantic-router" name = "semantic-router"
version = "0.0.65" version = "0.0.66"
description = "Super fast semantic router for AI decision making" description = "Super fast semantic router for AI decision making"
authors = [ authors = ["Aurelio AI <hello@aurelio.ai>"]
"James Briggs <james@aurelio.ai>",
"Siraj Aizlewood <siraj@aurelio.ai>",
"Simonas Jakubonis <simonas@aurelio.ai>",
"Luca Mannini <luca@aurelio.ai>",
"Bogdan Buduroiu <bogdan@aurelio.ai>",
"Ismail Ashraq <ashraq@aurelio.ai>",
"Daniel Griffin <daniel@aurelio.ai>",
"Tolga Arslan <tolga@aurelio.ai>"
]
readme = "README.md" readme = "README.md"
packages = [{include = "semantic_router"}] packages = [{include = "semantic_router"}]
license = "MIT" license = "MIT"
......
...@@ -4,4 +4,4 @@ from semantic_router.route import Route ...@@ -4,4 +4,4 @@ from semantic_router.route import Route
__all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"] __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"]
__version__ = "0.0.65" __version__ = "0.0.66"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment