Model-specific rate limit configuration

interface RateLimitModel {
    modelId: string;
    request?: RateLimitItem;
    token?: RateLimitItem;
    type: "model";
}

Properties

modelId: string

The UUID of the model this rate limit applies to

request?: RateLimitItem

Request rate limiting settings

Token rate limiting settings

type: "model"

The type of rate limit, always "model" for model-specific rate limits