You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,64 @@ async def main() -> None:
143
143
-`cacheStopStep`: The step at which caching ends (default: total steps)
144
144
- These parameters allow fine-grained control over when caching is active during the generation process.
145
145
146
+
### Asynchronous Processing with Webhooks
147
+
148
+
The Runware SDK supports asynchronous processing via webhooks for long-running operations. When you provide a `webhookURL`, the API immediately returns a task response and sends the final result to your webhook endpoint when processing completes.
149
+
150
+
#### How it works
151
+
152
+
1. Include `webhookURL` parameter in your request
153
+
2. Receive immediate response with `taskType` and `taskUUID`
154
+
3. Final result is POSTed to your webhook URL when ready
Copy file name to clipboardExpand all lines: setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
setup(
7
7
name="runware",
8
8
license="MIT",
9
-
version="0.4.24",
9
+
version="0.4.25",
10
10
author="Runware Inc.",
11
11
author_email="python.sdk@runware.ai",
12
12
description="The Python Runware SDK is used to run image inference with the Runware API, powered by the Runware inference platform. It can be used to generate images with text-to-image and image-to-image. It also allows the use of an existing gallery of models or selecting any model or LoRA from the CivitAI gallery. The API also supports upscaling, background removal, inpainting and outpainting, and a series of other ControlNet models.",
0 commit comments