From b2507b0b2e7d1a0a369d365e4fb2b254c827b841 Mon Sep 17 00:00:00 2001 From: Sirshendu Ganguly Date: Mon, 25 May 2026 17:52:37 +0530 Subject: [PATCH 1/2] Added new Ultralytics param inpaintSize --- runware/types.py | 2 +- runware/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runware/types.py b/runware/types.py index 13f5f22..14e374e 100644 --- a/runware/types.py +++ b/runware/types.py @@ -775,7 +775,7 @@ def provider_key(self) -> str: @dataclass class IUltralytics(SerializableMixin): - + inpaintSize: Optional[int] = None maskBlur: Optional[int] = None maskPadding: Optional[int] = None confidence: Optional[float] = None diff --git a/runware/utils.py b/runware/utils.py index 9c05871..704fa94 100644 --- a/runware/utils.py +++ b/runware/utils.py @@ -39,7 +39,7 @@ mimetypes.add_type("image/webp", ".webp") BASE_RUNWARE_URLS = { - Environment.PRODUCTION: "wss://ws-api.runware.ai/v1", + Environment.PRODUCTION: "wss://ws-api.runware.dev/v1", Environment.TEST: "ws://localhost:8080", } From e7c3f60166dea15a1b5784f952fbf26e2c4447d9 Mon Sep 17 00:00:00 2001 From: Sirshendu Ganguly Date: Tue, 26 May 2026 13:36:44 +0530 Subject: [PATCH 2/2] Fixed URL --- runware/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runware/utils.py b/runware/utils.py index 704fa94..9c05871 100644 --- a/runware/utils.py +++ b/runware/utils.py @@ -39,7 +39,7 @@ mimetypes.add_type("image/webp", ".webp") BASE_RUNWARE_URLS = { - Environment.PRODUCTION: "wss://ws-api.runware.dev/v1", + Environment.PRODUCTION: "wss://ws-api.runware.ai/v1", Environment.TEST: "ws://localhost:8080", }