docs: remove hardcoded pipeline/batch limits, default to unlimited

Pipeline steps and batch size are now unlimited by default. The old
"20 steps" and "200 images" figures had no basis in the actual code
(MAX_BATCH_SIZE already defaulted to 0/unlimited). Both remain
configurable via MAX_PIPELINE_STEPS and MAX_BATCH_SIZE env vars.

Also includes updated hardware requirements and sidebar nav from
prior documentation audit.
This commit is contained in:
ashim-hq
2026-04-23 20:50:38 +08:00
parent 4bfbc51b77
commit 8aea77b4be
7 changed files with 148 additions and 40 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ curl -X POST http://localhost:1349/api/v1/pipeline/batch \
-F 'pipeline=[{"toolId":"resize","settings":{"width":800}}]'
```
Each step's output is the next step's input. Up to **20 steps** per pipeline.
Each step's output is the next step's input. Unlimited steps per pipeline by default (configurable via `MAX_PIPELINE_STEPS`).
### Save and manage pipelines