Class FileCounts
- Namespace
- OpenAI.VectorStores
- Assembly
- OpenAI-DotNet.dll
public sealed class FileCounts
- Inheritance
-
FileCounts
- Inherited Members
Properties
Cancelled
The number of files that were cancelled.
[JsonInclude]
[JsonPropertyName("cancelled")]
public int Cancelled { get; }
Property Value
Completed
The number of files that have been successfully processed.
[JsonInclude]
[JsonPropertyName("completed")]
public int Completed { get; }
Property Value
Failed
The number of files that have failed to process.
[JsonInclude]
[JsonPropertyName("failed")]
public int Failed { get; }
Property Value
InProgress
The number of files that are currently being processed.
[JsonInclude]
[JsonPropertyName("in_progress")]
public int InProgress { get; }
Property Value
Total
The total number of files.
[JsonInclude]
[JsonPropertyName("total")]
public int Total { get; }