Class InternalTextOperationResult
- Namespace
- FoundationaLLM.Gateway.Models
- Assembly
- FoundationaLLM.Gateway.dll
Represents the result of a text operation request.
public class InternalTextOperationResult
- Inheritance
-
InternalTextOperationResult
- Inherited Members
- Extension Methods
Properties
ErrorMessage
Gets or sets the error message when the request processing has failed.
public string? ErrorMessage { get; set; }
Property Value
Failed
Gets or sets the flag that indicates whether the request procesing has failed or not.
public bool Failed { get; set; }
Property Value
FailedOperationIds
Gets or sets the list of operation IDs that failed during the request processing.
public List<string> FailedOperationIds { get; set; }
Property Value
TextChunks
Gets or sets the list of text chunks that were successfully processed.
public IList<TextChunk> TextChunks { get; set; }