Class RequestCounts
The request counts for different statuses within the batch.
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class RequestCounts
Properties
| Edit this page View SourceCompleted
Number of requests that have been completed successfully.
Declaration
[JsonProperty("completed")]
public int? Completed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Failed
Number of requests that have failed.
Declaration
[JsonProperty("failed")]
public int? Failed { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Total
Total number of requests in the batch.
Declaration
[JsonProperty("total")]
public int? Total { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |