Class RequestCounts
The request counts for different statuses within the batch.
Inheritance
object
RequestCounts
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: .dll
Syntax
public class RequestCounts
Properties
Completed
Number of requests that have been completed successfully.
Declaration
public int? Completed { get; set; }
Property Value
Type | Description |
---|---|
int? |
Failed
Number of requests that have failed.
Declaration
public int? Failed { get; set; }
Property Value
Type | Description |
---|---|
int? |
Total
Total number of requests in the batch.
Declaration
public int? Total { get; set; }
Property Value
Type | Description |
---|---|
int? |