Skip to content

Commit 604b356

Browse files
committed
monthly quota updated to 50
1 parent 0e5554f commit 604b356

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

docs/ai-interfaces/AGENTS.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,29 @@ The Feature Support Matrix table shows which capabilities are supported across P
120120
- Wrap the table in `<div style={{overflowX: 'auto'}}>` for horizontal scrolling on smaller screens
121121
- Use emojis ✅ and ❌ (not text symbols)
122122

123+
### Update Monthly Limits
124+
125+
When asked to update the monthly quota/limit for AI invocations:
126+
127+
1. **Identify all locations**: Search for mentions of monthly limits/quota in the AI interfaces documentation:
128+
- `docs/ai-interfaces/port-ai/api-interaction.md` - Contains rate limits section and example JSON responses
129+
- `docs/ai-interfaces/port-ai/overview.md` - Contains limits section and FAQ entries
130+
131+
2. **Update text descriptions**: Replace the quota number in all text descriptions (e.g., "20 AI invocations per month" → "50 AI invocations per month")
132+
133+
3. **Update example JSON**: Update the `monthlyLimit` value in example JSON responses to match the new limit. Also update `remainingQuota` to be one less than the limit (e.g., if limit is 50, remainingQuota should be 49)
134+
135+
4. **Files to check**:
136+
- `docs/ai-interfaces/port-ai/api-interaction.md` - Lines with "Monthly Quota" section and JSON examples
137+
- `docs/ai-interfaces/port-ai/overview.md` - Lines with "Monthly Quota" section and FAQ entries
138+
139+
5. **Search pattern**: Look for patterns like:
140+
- "20 AI invocations per month"
141+
- `"monthlyLimit": 20`
142+
- "Default quota: 20"
143+
144+
**Note**: The API reference files in `docs/api-reference/` are auto-generated from OpenAPI specifications and will be updated automatically when the backend API is updated. You don't need to manually edit these files.
145+
123146
## Other Tasks
124147

125148
For other tasks not listed above, ask for clarification from the user. Once understood, add a new section to the "Common Tasks" section of this file.

docs/ai-interfaces/port-ai/api-interaction.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ data: {
103103
"remainingTimeMs": 903
104104
},
105105
"monthlyQuotaUsage": {
106-
"monthlyLimit": 20,
107-
"remainingQuota": 19,
106+
"monthlyLimit": 50,
107+
"remainingQuota": 49,
108108
"month": "2025-09",
109109
"remainingTimeMs": 1766899073
110110
}
@@ -174,8 +174,8 @@ Signals that Port AI has finished processing and the response stream is complete
174174
"remainingTimeMs": 903
175175
},
176176
"monthlyQuotaUsage": {
177-
"monthlyLimit": 20,
178-
"remainingQuota": 19,
177+
"monthlyLimit": 50,
178+
"remainingQuota": 49,
179179
"month": "2025-09",
180180
"remainingTimeMs": 1766899073
181181
}
@@ -245,7 +245,7 @@ Port acts as a bridge to leading LLM providers and doesn't host LLM models inter
245245
- These limits reset hourly.
246246

247247
### Monthly Quota
248-
- **Default quota**: 20 AI invocations per month.
248+
- **Default quota**: 50 AI invocations per month.
249249
- Each interaction with Port AI counts as one request against your quota.
250250
- Quota resets monthly.
251251

docs/ai-interfaces/port-ai/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Port acts as a bridge to leading LLM providers and doesn't host LLM models inter
162162
- These limits reset hourly.
163163

164164
### Monthly Quota
165-
- **Default quota**: 20 AI invocations per month.
165+
- **Default quota**: 50 AI invocations per month.
166166
- Each interaction with Port AI counts as one request against your quota.
167167
- Quota resets monthly.
168168

@@ -335,7 +335,7 @@ Yes, Port AI has usage limits to ensure fair usage across all customers:
335335
- These limits reset hourly
336336

337337
**Monthly Quota:**
338-
- Default quota: 20 AI invocations per month
338+
- Default quota: 50 AI invocations per month
339339
- Each interaction with Port AI counts as one request
340340
- Quota resets monthly
341341

0 commit comments

Comments
 (0)