Class VectorizationPipelineExecutionDetail
- Namespace
- FoundationaLLM.Common.Models.Vectorization
- Assembly
- FoundationaLLM.Common.dll
Represents the state of a vectorization pipeline execution.
public class VectorizationPipelineExecutionDetail
- Inheritance
-
VectorizationPipelineExecutionDetail
- Inherited Members
- Extension Methods
Properties
ExecutionId
Gets or sets the unique identifier of the pipeline execution.
[JsonPropertyOrder(1)]
[JsonPropertyName("execution_id")]
public required string ExecutionId { get; set; }
Property Value
PipelineObjectId
Gets or sets the object identifier of the pipeline resource being executed.
[JsonPropertyOrder(0)]
[JsonPropertyName("pipeline_object_id")]
public required string PipelineObjectId { get; set; }
Property Value
VectorizationRequestObjectIds
The vectorization requests associated with the pipeline execution and their status. Key: vectorization request resource object id Value: the processing state of the request
[JsonPropertyOrder(2)]
[JsonPropertyName("vectorization_request_object_ids")]
public List<string> VectorizationRequestObjectIds { get; set; }