Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Embedder ¶
type Embedder interface {
Embed(ctx context.Context, text string) ([]float32, error)
Identity() string
Close() error
}
func NewEmbedder ¶
func NewEmbedder(cfg config.EmbedderConfig, resolvedProviders map[string]config.RawProviderConfig) (Embedder, error)
NewEmbedder returns an Embedder that calls POST …/v1/embeddings (OpenAI-compatible) for the named provider. cfg.Provider must be a non-empty key in resolvedProviders (the env-merged, credential-filtered map from providers.Init). That entry's api_key and base_url are reused; base_url must be non-empty (discovery defaults fill it when only an API key is set).
Click to show internal directories.
Click to hide internal directories.