Table of Contents

Interface IIndexingService

Namespace
FoundationaLLM.Common.Interfaces
Assembly
FoundationaLLM.Common.dll

Provides indexing capabilities for embedding vectors.

public interface IIndexingService
Extension Methods

Methods

IndexEmbeddingsAsync(EmbeddedContent, string)

Adds to a specified index the list of embeddings associated with a content.

Task<List<string>> IndexEmbeddingsAsync(EmbeddedContent embeddedContent, string indexName)

Parameters

embeddedContent EmbeddedContent

The EmbeddedContent containind the embeddings to index.

indexName string

The name of the index.

Returns

Task<List<string>>