Table of Contents

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

int

Completed

The number of files that have been successfully processed.

[JsonInclude]
[JsonPropertyName("completed")]
public int Completed { get; }

Property Value

int

Failed

The number of files that have failed to process.

[JsonInclude]
[JsonPropertyName("failed")]
public int Failed { get; }

Property Value

int

InProgress

The number of files that are currently being processed.

[JsonInclude]
[JsonPropertyName("in_progress")]
public int InProgress { get; }

Property Value

int

Total

The total number of files.

[JsonInclude]
[JsonPropertyName("total")]
public int Total { get; }

Property Value

int