Search Results for

    Show / Hide Table of Contents

    Class RealtimeRateLimit

    Inheritance
    object
    RealtimeRateLimit
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.OpenAI.Realtime
    Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
    Syntax
    public class RealtimeRateLimit

    Properties

    | Edit this page View Source

    Limit

    The maximum allowed value for the rate limit.

    Declaration
    [JsonProperty("limit")]
    public int Limit { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    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
    | Edit this page View Source

    Remaining

    The remaining value before the limit is reached.

    Declaration
    [JsonProperty("remaining")]
    public int Remaining { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    ResetSeconds

    Seconds until the rate limit resets.

    Declaration
    [JsonProperty("reset_seconds")]
    public float ResetSeconds { get; set; }
    Property Value
    Type Description
    float

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation