Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rate limits #199

Merged
merged 6 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions fern/pages/going-to-production/rate-limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,20 @@ keywords: "Cohere, large language model API"
createdAt: "Thu Feb 29 2024 18:20:04 GMT+0000 (Coordinated Universal Time)"
updatedAt: "Wed Jun 05 2024 20:23:51 GMT+0000 (Coordinated Universal Time)"
---
Cohere offers two kinds of API keys: evaluation keys (free but limited in usage), and production keys (paid and not limited in usage). You can create an evaluation or production key on [the API keys page](https://dashboard.cohere.com/api-keys). For more details on pricing please see our [pricing docs](https://docs.cohere.com/v2/docs/how-does-cohere-pricing-work).
Cohere offers two kinds of API keys: evaluation keys (free but limited in usage), and production keys (paid and much less limited in usage). You can create a trial or production key on [the API keys page](https://dashboard.cohere.com/api-keys). For more details on pricing please see our [pricing docs](https://docs.cohere.com/v2/docs/how-does-cohere-pricing-work).

| Endpoint | Evaluation RPM limit | Production RPM limit |
| ------------------------------------------ | -------------------- | -------------------- |
| [Chat](/reference/chat) | 20 | 500 |
| [Embed](/reference/embed) | 100 | 2,000 |
| [EmbedJob](/reference/embed-jobs) | 5 | 50 |
| [Rerank](/reference/rerank) | 10 | 1,000 |
| [Generate (legacy)](/reference/generate) | 5 | 500 |
| [Summarize (legacy)](/reference/summarize) | 5 | 500 |
| Endpoint | Trial rate limit | Production rate limit |
| ------------------------------------------ | --------------------- | --------------------- |
| [Embed](/reference/embed) | 100/min | 2,000/min |
| [Tokenize](/reference/tokenize) | 100/min | 2,000/min |
| [Classify](/reference/classify) | 100/min | 1000/min |
| [Rerank](/reference/rerank) | 10/min | 1,000/min |
| [Summarize (legacy)](/reference/summarize) | 5/min | 500/min |
| [Chat](/reference/chat) | 20/min | 500/min |
| [Generate (legacy)](/reference/generate) | 5/min | 500/min |
| [EmbedJob](/reference/embed-jobs) | 5/min | 50/min |
| Default (anything not covered above) | 500/min | 500/min |

In addition, all endpoints are limited to 1,000 calls **per month** with a **trial** key.

All endpoints are limited to 1,000 calls per month with a evaluation key.

Organizational evaluation key limitations:
- Organizations can have unlimited evaluation keys.
- Organization evaluation keys share the rate limits enumerated above.
- Playground and Chat UI usage counts toward the evaluation key rate limit.
If you have any questions or want to speak about getting a rate limit increase, reach out to [email protected].
Loading