Skip to content

Commit 704f97e

Browse files
committed
doc: add /runs/:id rate limit
1 parent f36ce09 commit 704f97e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/langsmith/administration-overview.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -279,12 +279,13 @@ After the max events are received we will respond with a 429 until 60 seconds fr
279279

280280
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.
281281

282-
| Method | Endpoint | Limit | Window |
283-
| ------------- | -------- | ----- | -------- |
284-
| DELETE | Sessions | 30 | 1 minute |
285-
| POST OR PATCH | Runs | 5000 | 1 minute |
286-
| POST | Feedback | 5000 | 1 minute |
287-
| \* | \* | 2000 | 1 minute |
282+
| Method | Endpoints | Limit | Window |
283+
| ----------------- | ------------- | ----- | -------- |
284+
| `DELETE` | `/sessions*` | 30 | 1 minute |
285+
| `POST` OR `PATCH` | `/runs*` | 5000 | 1 minute |
286+
| `GET` | `/runs/:id` | 30 | 1 minute |
287+
| `POST` | `/feedbacks*` | 5000 | 1 minute |
288+
| `*` | `*` | 2000 | 1 minute |
288289

289290
<Note>
290291
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.

0 commit comments

Comments
 (0)