diff --git a/pyproject.toml b/pyproject.toml index 9e2c8c0884f2217f3d9b5d6f41b039ada631df8c..9b4c39031b1bfe9887dc8a76ea7bb124358ecc79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-router" -version = "0.0.43" +version = "0.0.44" description = "Super fast semantic router for AI decision making" authors = [ "James Briggs <james@aurelio.ai>", diff --git a/semantic_router/__init__.py b/semantic_router/__init__.py index aa30b0b60b278b2037499c4162bacee3c4904ff7..74ba926fc153ed5e7b65b5d6378f169198135395 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -4,4 +4,4 @@ from semantic_router.route import Route __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"] -__version__ = "0.0.43" +__version__ = "0.0.44" diff --git a/semantic_router/encoders/openai.py b/semantic_router/encoders/openai.py index 86f46e8c1a4dc92f057683027d69755d80bb0c43..e46e6c496f2e8ae77a7a6121b528b2107e2b654f 100644 --- a/semantic_router/encoders/openai.py +++ b/semantic_router/encoders/openai.py @@ -19,8 +19,8 @@ model_configs = { "text-embedding-ada-002": EncoderInfo( name="text-embedding-ada-002", token_limit=8192 ), - "text-embed-3-small": EncoderInfo(name="text-embed-3-small", token_limit=8192), - "text-embed-3-large": EncoderInfo(name="text-embed-3-large", token_limit=8192), + "text-embedding-3-small": EncoderInfo(name="text-embedding-3-small", token_limit=8192), + "text-embedding-3-large": EncoderInfo(name="text-embedding-3-large", token_limit=8192), }