9 lines
182 B
Go
9 lines
182 B
Go
package embed
|
|
|
|
import "context"
|
|
|
|
// Embedder produces a vector representation for input text.
|
|
type Embedder interface {
|
|
Embed(ctx context.Context, text string) ([]float32, error)
|
|
}
|