diff --git a/src/langsmith/administration-overview.mdx b/src/langsmith/administration-overview.mdx index 8472464961..72ac481700 100644 --- a/src/langsmith/administration-overview.mdx +++ b/src/langsmith/administration-overview.mdx @@ -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 | 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.