Versions in this module Expand all Collapse all v1 v1.3.0 Jun 1, 2026 Changes in this version + type OpenAIConfig struct + APIKey string + BaseURL string + Dimensions int + Model string + Timeout time.Duration + type OpenAIEmbedder struct + func NewOpenAIEmbedder(cfg OpenAIConfig) *OpenAIEmbedder + func (e *OpenAIEmbedder) Dimensions() int + func (e *OpenAIEmbedder) Embed(ctx context.Context, text string) ([]float32, error) + func (e *OpenAIEmbedder) EmbedBatch(ctx context.Context, texts []string) ([][]float32, error) + func (e *OpenAIEmbedder) Model() string