Class RealtimeRateLimit
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI.Realtime
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class RealtimeRateLimit
Properties
| Edit this page View SourceLimit
The maximum allowed value for the rate limit.
Declaration
[JsonProperty("limit")]
public int Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Name
The name of the rate limit ("requests", "tokens", "input_tokens", "output_tokens").
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Remaining
The remaining value before the limit is reached.
Declaration
[JsonProperty("remaining")]
public int Remaining { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ResetSeconds
Seconds until the rate limit resets.
Declaration
[JsonProperty("reset_seconds")]
public float ResetSeconds { get; set; }
Property Value
| Type | Description |
|---|---|
| float |