Skip to content
Snippets Groups Projects
README.md 3.67 KiB
Newer Older
  • Learn to ignore specific revisions
  • James Briggs's avatar
    James Briggs committed
    [![Aurelio AI](https://pbs.twimg.com/profile_banners/1671498317455581184/1696285195/1500x500)](https://aurelio.ai)
    
    James Briggs's avatar
    James Briggs committed
    
    
    Simonas's avatar
    Simonas committed
    # Semantic Router
    
    Simonas's avatar
    Simonas committed
    <p>
    <img alt="GitHub Contributors" src="https://img.shields.io/github/contributors/aurelio-labs/semantic-router" />
    <img alt="GitHub Last Commit" src="https://img.shields.io/github/last-commit/aurelio-labs/semantic-router" />
    <img alt="" src="https://img.shields.io/github/repo-size/aurelio-labs/semantic-router" />
    <img alt="GitHub Issues" src="https://img.shields.io/github/issues/aurelio-labs/semantic-router" />
    <img alt="GitHub Pull Requests" src="https://img.shields.io/github/issues-pr/aurelio-labs/semantic-router" />
    
    Simonas's avatar
    Simonas committed
    <img src="https://codecov.io/gh/aurelio-labs/semantic-router/graph/badge.svg?token=H8OOMV2TUF" />
    
    Simonas's avatar
    Simonas committed
    <img alt="Github License" src="https://img.shields.io/badge/License-MIT-yellow.svg" />
    </p>
    
    James Briggs's avatar
    James Briggs committed
    
    Semantic Router is a superfast decision 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.
    
    ## Quickstart
    
    To get started with _semantic-router_ we install it like so:
    
    ```
    pip install -qU semantic-router
    ```
    
    We begin by defining a set of `Decision` objects. These are the decision paths that the semantic router can decide to use, let's try two simple decisions for now — one for talk on _politics_ and another for _chitchat_:
    
    ```python
    
    James Briggs's avatar
    James Briggs committed
    from semantic_router import Route
    
    James Briggs's avatar
    James Briggs committed
    
    # we could use this as a guide for our chatbot to avoid political conversations
    
    Luca's avatar
    Luca committed
    politics = Route(
    
    James Briggs's avatar
    James Briggs committed
        name="politics",
        utterances=[
            "isn't politics the best thing ever",
            "why don't you tell me about your political opinions",
    
    Simonas's avatar
    Simonas committed
            "don't you just love the president" "don't you just hate the president",
    
    James Briggs's avatar
    James Briggs committed
            "they're going to destroy this country!",
    
    Simonas's avatar
    Simonas committed
            "they will save the country!",
        ],
    
    James Briggs's avatar
    James Briggs committed
    )
    
    # this could be used as an indicator to our chatbot to switch to a more
    # conversational prompt
    
    Luca's avatar
    Luca committed
    chitchat = Route(
    
    James Briggs's avatar
    James Briggs committed
        name="chitchat",
        utterances=[
            "how's the weather today?",
            "how are things going?",
            "lovely weather today",
            "the weather is horrendous",
    
    Simonas's avatar
    Simonas committed
            "let's go to the chippy",
        ],
    
    James Briggs's avatar
    James Briggs committed
    )
    
    # we place both of our decisions together into single list
    
    James Briggs's avatar
    James Briggs committed
    routes = [politics, chitchat]
    
    James Briggs's avatar
    James Briggs committed
    ```
    
    We have our decisions ready, now we initialize an embedding / encoder model. We currently support a `CohereEncoder` and `OpenAIEncoder` — more encoders will be added soon. To initialize them we do:
    
    ```python
    import os
    from semantic_router.encoders import CohereEncoder, OpenAIEncoder
    
    # for Cohere
    os.environ["COHERE_API_KEY"] = "<YOUR_API_KEY>"
    encoder = CohereEncoder()
    
    # or for OpenAI
    os.environ["OPENAI_API_KEY"] = "<YOUR_API_KEY>"
    encoder = OpenAIEncoder()
    ```
    
    With our `decisions` and `encoder` defined we now create a `DecisionLayer`. The decision layer handles our semantic decision making.
    
    ```python
    
    Luca's avatar
    Luca committed
    from semantic_router.layer import RouteLayer
    
    James Briggs's avatar
    James Briggs committed
    dl = RouteLayer(encoder=encoder, routes=routes)
    
    James Briggs's avatar
    James Briggs committed
    ```
    
    We can now use our decision layer to make super fast decisions based on user queries. Let's try with two queries that should trigger our decisions:
    
    ```python
    
    James Briggs's avatar
    James Briggs committed
    dl("don't you love politics?").name
    
    James Briggs's avatar
    James Briggs committed
    ```
    
    ```
    [Out]: 'politics'
    ```
    
    Correct decision, let's try another:
    
    ```python
    
    James Briggs's avatar
    James Briggs committed
    dl("how's the weather today?").name
    
    James Briggs's avatar
    James Briggs committed
    ```
    
    ```
    [Out]: 'chitchat'
    ```
    
    We get both decisions correct! Now lets try sending an unrelated query:
    
    ```python
    
    James Briggs's avatar
    James Briggs committed
    dl("I'm interested in learning about llama 2").name
    
    Simonas's avatar
    Simonas committed
    [Out]:
    
    James Briggs's avatar
    James Briggs committed
    ```
    
    In this case, no decision could be made as we had no matches — so our decision layer returned `None`!
    
    
    James Briggs's avatar
    James Briggs committed
    ## 📚 [Resources](https://github.com/aurelio-labs/semantic-router/tree/main/docs)