Skip to content
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
13 changes: 7 additions & 6 deletions src/langsmith/administration-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,13 @@ After the max events are received we will respond with a 429 until 60 seconds fr

This 429 is thrown by our application load balancer and is a mechanism in place for all LangSmith users independent of plan tier to ensure continuity of service for all users.

| Method | Endpoint | Limit | Window |
| ------------- | -------- | ----- | -------- |
| DELETE | Sessions | 30 | 1 minute |
| POST OR PATCH | Runs | 5000 | 1 minute |
| POST | Feedback | 5000 | 1 minute |
| \* | \* | 2000 | 1 minute |
| Method | Endpoints | Limit | Window |
| ----------------- | ------------- | ----- | -------- |
| `DELETE` | `/sessions*` | 30 | 1 minute |
| `POST` OR `PATCH` | `/runs*` | 5000 | 1 minute |
| `GET` | `/runs/:id` | 30 | 1 minute |
| `POST` | `/feedbacks*` | 5000 | 1 minute |
| `*` | `*` | 2000 | 1 minute |

<Note>
The LangSmith SDK takes steps to minimize the likelihood of reaching these limits on run-related endpoints by batching up to 100 runs from a single session ID into a single API call.
Expand Down