guides/rate-limits.md +6 −1
53You can expect to see the following header fields:53You can expect to see the following header fields:
54 54
55| Field | Sample Value | Description |55| Field | Sample Value | Description |
5656| ------------------------------ | ------------ | ------------------------------------------------------------------------------------- || ------------------------------------ | ------------ | ----------------------------------------------------------------------------------------------- |
57| x-ratelimit-limit-requests | 60 | The maximum number of requests that are permitted before exhausting the rate limit. |57| x-ratelimit-limit-requests | 60 | The maximum number of requests that are permitted before exhausting the rate limit. |
58| x-ratelimit-limit-tokens | 150000 | The maximum number of tokens that are permitted before exhausting the rate limit. |58| x-ratelimit-limit-tokens | 150000 | The maximum number of tokens that are permitted before exhausting the rate limit. |
59| x-ratelimit-remaining-requests | 59 | The remaining number of requests that are permitted before exhausting the rate limit. |59| x-ratelimit-remaining-requests | 59 | The remaining number of requests that are permitted before exhausting the rate limit. |
60| x-ratelimit-remaining-tokens | 149984 | The remaining number of tokens that are permitted before exhausting the rate limit. |60| x-ratelimit-remaining-tokens | 149984 | The remaining number of tokens that are permitted before exhausting the rate limit. |
61| x-ratelimit-reset-requests | 1s | The time until the rate limit (based on requests) resets to its initial state. |61| x-ratelimit-reset-requests | 1s | The time until the rate limit (based on requests) resets to its initial state. |
62| x-ratelimit-reset-tokens | 6m0s | The time until the rate limit (based on tokens) resets to its initial state. |62| x-ratelimit-reset-tokens | 6m0s | The time until the rate limit (based on tokens) resets to its initial state. |
63| x-ratelimit-limit-project-tokens | 60000 | The token limit for the project. |
64| x-ratelimit-remaining-project-tokens | 57000 | The remaining number of tokens permitted before exhausting the project-scoped token rate limit. |
65| x-ratelimit-reset-project-tokens | 3s | The time until the project-scoped token rate limit resets to its initial state. |
66
67Project-token headers may be present when a project-scoped token limit applies.
63 68
64### Fine-tuning rate limits69### Fine-tuning rate limits
65 70