Table of Contents

Class EmbeddingRequestResult

Namespace
FoundationaLLM.Gateway.Models
Assembly
FoundationaLLM.Gateway.dll

Represents the result of procedding an embedding request.

public class EmbeddingRequestResult
Inheritance
EmbeddingRequestResult
Inherited Members
Extension Methods

Properties

ErrorMessage

Gets or sets the error message if the embedding request processing has failed.

public string? ErrorMessage { get; set; }

Property Value

string

Failed

Gets or sets the flag that indicates whether the embedding request procesing has failed or not.

public bool Failed { get; set; }

Property Value

bool

FailedOperationIds

Gets or sets the list of operation IDs that failed during the embedding request processing.

public List<string> FailedOperationIds { get; set; }

Property Value

List<string>

TextChunks

Gets or sets the list of text chunks that were successfully processed.

public IList<TextChunk> TextChunks { get; set; }

Property Value

IList<TextChunk>