Skip to main content

SemRoute is a semantic router that helps you route using the semantic meaning of the query

Project description

SemRoute

SemRoute is a semantic router that helps you route using the semantic meaning of the query. Here, you do not have to train a classifier or call a Large Language Model for making a decision, instead, it uses vector embeddings to make those decisions faster. It is simple to use and understand. This tool gives you the flexibility of choosing different embedding models, thresholding types, and scoring methods to best fit your use case.

Installation

Install the library using the command:

pip install semroute

To use the semantic router, you need to create a Router and add semantic routes that will define the available routes for a given query.

To create a Router

from semroute import Route

router = Router(
	embeder_host="OpenAI",
	embeder_model="text-embedding-3-large",
	thresholding_type="dynamic",
	scoring_method="centroid"
)

You can configure your Router for the following settings:

  1. embeder_host: SemRoute currently supports embedding models from OpenAI and MistralAI. So, you can choose either of them for using their embedding models.
  2. embeder_model: This field can be used for specifying the embedding model to be used from the embeder_host. Given below are the embedding models supported from each host:
    • OpenAI: [text-embedding-3-small, text-embedding-3-large, text-embedding-ada-002]
    • MistralAI: [mistral-embed]
  3. thresholding_type: This field specifies the type of thresholding mechanism to be used for routing the queries. SemRoute supports two types of thresholding:
    • static: This type instructs the router to use the preset thresholds for each embedding model to determine if the query belongs to a specific route or not. It is model dependent and these thresholds are refined for each embedding model. It leads to faster routing decision because there is no other overhead other than generating the embeddings of the provided utterances. However, using this type of thresholding can sometimes lead to wrong routing decisions because it is not adapted for the sample utterances that you provide for the route.
    • dynamic: This thresholding type instructs the Router to adapt the threshold for the embedding model using the sample utterances provided in the route. For using this mode, you need to provide OPENAI_API_KEY and set it as your environment variable. This mode uses OpenAI's GPT-4o to generate more utterances similar to that provided by the user and uses them to fine-tune the dynamic threshold. This method is slower but leads to more accurate routing decisions.
  4. scoring_method: This field is used for specifying the method used for scoring how similar the query is to each route. SemRoute supports two scoring methods:
    • individual_averaging: In this method, similarity score is calculated between each utterance embedding of the route and the query. Then the average of these similarities is used for making a routing decision. This method has a time complexity of O(n).
    • centroid: In this method, a centroid is calculated for each route using the individual utterance embeddings and then the similarity between this centroid and the query embedding is used for making a routing decision. This method has a time complexity of O(1).

To add routes

router.add_route(
    name="technology",
    utterances=[
        "what's the latest in tech news?",
        "tell me about artificial intelligence",
        "how does blockchain work?",
        "what is the best programming language?",
        "can you recommend a good laptop?",
        "what's new with the iPhone?"
    ],
    description="A group of utterances for when the user discusses anything related to technology"
)

router.add_route(
    name="sports",
    utterances=[
        "who won the game last night?",
        "what's the score of the basketball game?",
        "tell me about the latest in football",
        "who's your favorite athlete?",
        "do you think they'll win the championship?",
        "when is the next World Cup?"
    ],
    description="A group of utterances for when the user discusses anything related to sports"
)

router.add_route(
    name="food",
    utterances=[
        "what's your favorite food?",
        "can you recommend a good restaurant?",
        "how do you make spaghetti?",
        "what's a good recipe for a healthy dinner?",
        "tell me about the best dessert you've had",
        "what's your favorite cuisine?"
    ],
    description="A group of utterances for when the user discusses anything related to food"
)

router.add_route(
    name="travel",
    utterances=[
        "where's the best place to travel?",
        "can you recommend a vacation spot?",
        "what's the best way to travel on a budget?",
        "tell me about your favorite trip",
        "where should I go for my next holiday?",
        "what are the top tourist destinations?"
    ],
    description="A group of utterances for when the user discusses anything related to travel"
)

router.add_route(
    name="health",
    utterances=[
        "what's the best way to stay healthy?",
        "can you recommend a good workout?",
        "tell me about a healthy diet",
        "how do I reduce stress?",
        "what are the benefits of meditation?",
        "how do I improve my mental health?"
    ],
    description="A group of utterances for when the user discusses anything related to health"
)

For better routing decisions make sure to include as many cases of utterance as possible for each route. This will help the router to ensure that no edge case is left out while making a routing decision. Also, while using the dynamic mode, please make sure to give a description that very closely aligns with the intent of that route because it is used for generating similar utterances.

To make a routing decision

router.route("How much does the health insurance costs?")
[OUT]: health

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

semroute-0.0.2.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

semroute-0.0.2-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file semroute-0.0.2.tar.gz.

File metadata

  • Download URL: semroute-0.0.2.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for semroute-0.0.2.tar.gz
Algorithm Hash digest
SHA256 92490e9623b1d363123a0591061453136b7c2c431e24113405ef4be82dda6b0a
MD5 5302228dee7a3510b16d5edebf97ce4f
BLAKE2b-256 35bee2e9fd7d638ef8043add0157746896bdfc63641fa7d3920dd269fb3d97f2

See more details on using hashes here.

File details

Details for the file semroute-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: semroute-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for semroute-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 719bd934869d2bbacb20e6d08f44a7cc04fee92ef2aaa078ed7e19e606b63f3e
MD5 c7e5c212487527c027ea22560980ab63
BLAKE2b-256 ead2d31ec5856d66a8bc6333009979e78cc172bb564de61ca2a91e6ba6dbadb9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page