We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dbf372 commit 1c73b91Copy full SHA for 1c73b91
src/sentry/api/endpoints/group_ai_summary.py
@@ -26,11 +26,9 @@ class GroupAiSummaryEndpoint(GroupAiEndpoint):
26
enforce_rate_limit = True
27
rate_limits = {
28
"POST": {
29
- RateLimitCategory.IP: RateLimit(limit=10, window=60),
30
- RateLimitCategory.USER: RateLimit(limit=10, window=60),
31
- RateLimitCategory.ORGANIZATION: RateLimit(
32
- limit=30, window=60
33
- ), # TODO: Raise this limit when we move out of internal preview
+ RateLimitCategory.IP: RateLimit(limit=20, window=60),
+ RateLimitCategory.USER: RateLimit(limit=20, window=60),
+ RateLimitCategory.ORGANIZATION: RateLimit(limit=100, window=60),
34
}
35
36
0 commit comments