apps_run
Run a micro-app by applying input overrides to a stored prompt snapshot and queuing it for execution on ComfyUI. Returns a prompt ID for status polling.
Instructions
Run a micro-app once: patches values (keys '.', e.g. {"6.text": "a cat"}) into the app's stored prompt snapshot and queues it on ComfyUI. Returns the prompt_id — poll apps_run_status for completion and outputs. Only pass values for inputs listed in the app's appMode.inputs; omitted inputs keep their conversion-time defaults.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | The app's uuid (from apps_list). | |
| values | No | Input overrides keyed '<nodeId>.<widget>' (e.g. {"6.text": "a cat", "3.seed": 42}). Unknown keys fail loudly (the manifest drifted from the snapshot). |