rate_limit_limiter_create
Create a named rate limiter to control request frequency using fixed window, sliding window, or token bucket algorithms.
Instructions
[rate_limit] Create a named rate limiter. algorithm: fixed (window counter), sliding (no burst), or token_bucket (smooth rate with burst).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| max_calls | No | ||
| window_seconds | No | ||
| algorithm | No | ||
| rate_per_second | No | ||
| burst_capacity | No |