Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@
"pages": [
"documentation/serverless/vllm",
"documentation/serverless/text-generation-inference-tgi",
"documentation/serverless/comfy-ui"
"documentation/serverless/comfy-ui",
"documentation/serverless/comfyui-wan-2.2",
"documentation/serverless/comfyui-acestep"
]
}
]
Expand Down
4 changes: 3 additions & 1 deletion documentation/serverless/comfy-ui.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Then send your workflow request to the worker URL:
- `cost`(float): The estimated compute resources for the request. The units of this cost are defined by the PyWorker.
- `endpoint`(string): Name of the Endpoint.
- `reqnum`(int): The request number corresponding to this worker instance. Note that workers expect to receive requests in approximately the same order as these reqnums, but some flexibility is allowed due to potential out-of-order requests caused by concurrency or small delays on the proxy server.
- `request_idx` (int): The request index.
- `url`(string): The address of the worker instance to send the request to.

`payload`:
Expand Down Expand Up @@ -154,8 +155,9 @@ Then send your workflow request to the worker URL:
"auth_data": {
"cost": 100.0,
"endpoint": "comfyui-json",
"reqnum": 2,
"reqnum": reqnum_from_route_endpoint,
"signature": "signature_from_route_endpoint",
"request_idx": request_idx_from_route_endpoint,
"url": "https://worker-address:port"
},
"payload": {
Expand Down
Loading