@kolbo/kolbo-code-linux-arm64-musl 1.1.68 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/kolbo +0 -0
- package/package.json +1 -1
- package/skills/kolbo/SKILL.md +8 -0
package/bin/kolbo
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/skills/kolbo/SKILL.md
CHANGED
|
@@ -105,6 +105,14 @@ Creative generations bill against the user's Kolbo credit balance. Order of expe
|
|
|
105
105
|
|
|
106
106
|
Rule of thumb: confirm intent before firing off a video generation unless the user was explicit. For images, just generate.
|
|
107
107
|
|
|
108
|
+
### Rate Limiting
|
|
109
|
+
Kolbo enforces **10 generation requests per minute per user per tool type** (e.g. 10 image calls + 10 video calls = fine, but 11 image calls in 1 minute = rate limited). General media requests are capped at **300 per minute**.
|
|
110
|
+
|
|
111
|
+
When making multiple generation calls:
|
|
112
|
+
- **Stagger calls** — do NOT fire all in parallel. Space them ~5-10 seconds apart.
|
|
113
|
+
- **Batch images**: use `generate_creative_director` instead of calling `generate_image` 5+ times — it handles multi-scene in one request.
|
|
114
|
+
- If you get a rate limit error (429), wait 60 seconds (the window resets per minute) and retry. Do not retry more than 2 times.
|
|
115
|
+
|
|
108
116
|
---
|
|
109
117
|
|
|
110
118
|
## Transcription & Audio/Video Analysis
|