Documentation
¶
Overview ¶
Package semanticrouter is a package for abstractly computing similarity scores between a query vector embedding and a set of vector embeddings.
It provides a simple key-value store for embeddings and a router that can be used to find the best route for a given utterance.
The router uses a similarity score to determine the best route for a given utterance.
The semantic router is designed to be used in conjunction with LLMs and agents to provide a superfast decision-making layer.
Index ¶
- func NormalizeScores(sim []float64) []float64
- type Encoder
- type ErrEncoding
- type ErrGetEmbedding
- type ErrNoRouteFound
- type Getter
- type Option
- func WithEuclideanDistance(coefficient float64) Option
- func WithJaccardSimilarity(coefficient float64) Option
- func WithManhattanDistance(coefficient float64) Option
- func WithPearsonCorrelation(coefficient float64) Option
- func WithSimilarityDotMatrix(coefficient float64) Option
- func WithWorkers(workers int) Option
- type Route
- type Router
- type Setter
- type Store
- type Utterance
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NormalizeScores ¶
NormalizeScores normalizes the similarity scores to a 0-1 range. The function takes a slice of float64 values representing the similarity scores.
The function takes a slice of float64 values representing the similarity scores and returns a slice of float64 values representing the normalized similarity scores.
Types ¶
type Encoder ¶
Encoder represents a encoding driver in the semantic router.
It is an interface that defines a single method, Encode, which takes a string and returns a []float64 representing the embedding of the string.
type ErrEncoding ¶
type ErrEncoding struct {
Message string
}
ErrEncoding is an error that is returned when an error occurs during encoding.
type ErrGetEmbedding ¶
ErrGetEmbedding is an error that is returned when an error occurs during getting an embedding.
func (ErrGetEmbedding) Error ¶
func (e ErrGetEmbedding) Error() string
Error returns the error message.
type ErrNoRouteFound ¶
ErrNoRouteFound is an error that is returned when no route is found.
func (ErrNoRouteFound) Error ¶
func (e ErrNoRouteFound) Error() string
Error returns the error message.
type Getter ¶
Getter is an interface that defines a method, Get, which takes a string and returns a []float64 from the data store.
If the key does not exist, it returns an error.
type Option ¶
type Option func(*Router)
Option is a function that configures a Router.
func WithEuclideanDistance ¶
WithEuclideanDistance sets the EuclideanDistance function with a coefficient.
$$d(x, y) = \sqrt{\sum_{i=1}^{n}(x_i - y_i)^2}$$
func WithJaccardSimilarity ¶
WithJaccardSimilarity sets the JaccardSimilarity function with a coefficient.
$$J(A, B)=\frac{|A \cap B|}{|A \cup B|}$$
It adds the jaccard similarity to the comparision functions with the given coefficient.
func WithManhattanDistance ¶
WithManhattanDistance sets the ManhattanDistance function with a coefficient.
$$d(x, y) = |x_1 - y_1| + |x_2 - y_2| + ... + |x_n - y_n|$$
It adds the manhatten distance to the comparision functions with the given coefficient.
func WithPearsonCorrelation ¶
WithPearsonCorrelation sets the PearsonCorrelation function with a coefficient.
$$r=\frac{\sum\left(x_{i}-\bar{x}\right)\left(y_{i}-\bar{y}\right)}{\sqrt{\sum\left(x_{i}-\bar{x}\right)^{2} \sum\left(y_{i}-\bar{y}\right)^{2}}}$$
It adds the pearson correlation to the comparision functions with the given coefficient.
func WithSimilarityDotMatrix ¶
WithSimilarityDotMatrix sets the similarity function to use with a coefficient.
$$a \cdot b=\sum_{i=1}^{n} a_{i} b_{i}$$
It adds the similarity dot matrix to the comparision functions with the given coefficient.
func WithWorkers ¶
WithWorkers sets the number of workers to use for computing similarity scores.
type Route ¶
type Route struct { Name string // Name is the name of the route. Utterances []Utterance // Utterances is a slice of Utterances. }
Route represents a route in the semantic router.
It is a struct that contains a name and a slice of Utterances.
type Router ¶
type Router struct { Routes []Route // Routes is a slice of Routes. Encoder Encoder // Encoder is an Encoder that encodes utterances into vectors. Storage Store // Storage is a Store that stores the utterances. // contains filtered or unexported fields }
Router represents a semantic router.
Router is a struct that contains a slice of Routes and an Encoder.
Match can be called on a Router to find the best route for a given utterance.
func NewRouter ¶
func NewRouter( routes []Route, encoder Encoder, store Store, opts ...Option, ) (router *Router, err error)
NewRouter creates a new semantic router.
func (*Router) Match ¶
func (r *Router) Match( ctx context.Context, utterance string, ) (bestRoute *Route, bestScore float64, err error)
Match returns the route that matches the given utterance.
The score is the similarity score between the query vector and the index vector.
If the given context is canceled, the context's error is returned if it is non-nil.
type Setter ¶
Setter is an interface that defines a method, Store, which takes a []float64 and stores it in a some sort of data store.
Directories
¶
Path | Synopsis |
---|---|
encoders
|
|
closedai
Module
|
|
google
Module
|
|
ollama
Module
|
|
voyageai
Module
|
|
examples
|
|
chit-chat
Package main shows how to use the semantic router to find the best route for a given utterance in the context of a chat bot or other conversational application.
|
Package main shows how to use the semantic router to find the best route for a given utterance in the context of a chat bot or other conversational application. |
veterinarian
Module
|
|
stores
|
|
memory
Module
|
|
mongo
Module
|
|
valkey
Module
|