comfyui-rs
Async Rust client for ComfyUI -- REST API, WebSocket progress tracking, and workflow building.
Example
use ComfyClient;
use json;
let client = new;
let workflow = json!;
let prompt_id = client.queue_prompt.await?;
let output = client.wait_for_completion.await?;
Ecosystem
- stack-ids: Traced method variants (
queue_prompt_traced,image_traced, etc.) acceptTraceCtxfor correlation
stack-ids integration
Integrated via traced method variants. Pass Option<&TraceCtx> to any *_traced() method for correlation logging.