@ionos-cloud/n8n-nodes-ionos-cloud 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +1 -5
package/README.md CHANGED
@@ -317,6 +317,21 @@ Tested against n8n version 2.1.5+
317
317
  3. Use Generate Image for text-to-image generation
318
318
  4. Drop-in replacement for OpenAI API in existing n8n workflows
319
319
 
320
+ ### Avoiding Rate Limits
321
+
322
+ The IONOS AI Model Hub API enforces rate limits (300 requests/min, 5 requests/sec with a burst of 10). When a node receives multiple input items (e.g., from a preceding "Get All" operation), n8n executes the node once per item, which can trigger `429 Too Many Requests` errors.
323
+
324
+ To prevent this, configure **batching** in the node's **Settings** tab:
325
+
326
+ 1. Open the AI Model Hub node and go to the **Settings** tab
327
+ 2. Under **Request Options**, click **Add Option** and select **Batching**
328
+ 3. Set **Items per Batch** to `2` (or lower)
329
+ 4. Set **Batch Interval (ms)** to `1000` (or higher)
330
+
331
+ This ensures n8n processes only a few items at a time with a delay between batches, staying within the API rate limits.
332
+
333
+ > **Tip:** If your workflow only needs a single API call (e.g., one Chat Completion), use a **Limit** node before the AI Model Hub node to reduce the input to 1 item.
334
+
320
335
  ## API Endpoints
321
336
 
322
337
  Each node connects to:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionos-cloud/n8n-nodes-ionos-cloud",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Official n8n community nodes for IONOS Cloud services (Infrastructure, Certificate Manager, DNS, CDN, AI Model Hub)",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.ionos.com/cloud",
@@ -69,9 +69,5 @@
69
69
  },
70
70
  "peerDependencies": {
71
71
  "n8n-workflow": "*"
72
- },
73
- "overrides": {
74
- "form-data": "^4.0.4",
75
- "undici": "^6.23.0"
76
72
  }
77
73
  }