Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type VectorStore ¶
type VectorStore interface {
CreateCollection(ctx context.Context, collection string) error
AddDocuments(ctx context.Context, docs []types.Document, collection string) ([]string, error) // @return documentIDs, error
SimilaritySearch(ctx context.Context, query string, numDocuments int, collection string, where map[string]string, whereDocument []cg.WhereDocument) ([]types.Document, error) //nolint:lll
RemoveCollection(ctx context.Context, collection string) error
RemoveDocument(ctx context.Context, documentID string, collection string, where map[string]string, whereDocument []cg.WhereDocument) error
GetDocuments(ctx context.Context, collection string, where map[string]string, whereDocument []cg.WhereDocument) ([]types.Document, error)
ImportCollectionsFromFile(ctx context.Context, path string, collections ...string) error
ExportCollectionsToFile(ctx context.Context, path string, collections ...string) error
}
func New ¶ added in v0.4.14
func New(ctx context.Context, dsn string, embeddingProvider etypes.EmbeddingModelProvider) (VectorStore, error)
Click to show internal directories.
Click to hide internal directories.