From 0d08ac51a546aa7460ac3bbdf6e8ceea44e0bf77 Mon Sep 17 00:00:00 2001 From: Sirshendu Ganguly Date: Fri, 10 Apr 2026 14:30:05 +0530 Subject: [PATCH 1/2] Added addittional params to support Hyper 3D model --- runware/types.py | 8 ++++++++ runware/utils.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/runware/types.py b/runware/types.py index 326c7b7..0413743 100644 --- a/runware/types.py +++ b/runware/types.py @@ -876,6 +876,14 @@ class ISettings(SerializableMixin): textureSeed: Optional[int] = None textureAlignment: Optional[str] = None textureQuality: Optional[str] = None + useOriginalAlpha: Optional[bool] = None + material: Optional[str] = None + polyCount: Optional[float] = None + taPose: Optional[bool] = None + boundingBox: Optional[List[int]] = None + meshMode: Optional[str] = None + addons: Optional[List[str]] = None + hdTexture: Optional[bool] = None autoSize: Optional[bool] = None orientation: Optional[str] = None quad: Optional[bool] = None diff --git a/runware/utils.py b/runware/utils.py index 52160e6..53da9c1 100644 --- a/runware/utils.py +++ b/runware/utils.py @@ -45,7 +45,7 @@ # HTTP REST base URL for streaming (e.g. textInference with deliveryMethod=stream) BASE_RUNWARE_HTTP_URLS = { - Environment.PRODUCTION: "https://api.runware.ai/v1", + Environment.PRODUCTION: "https://api.runware.dev/v1", Environment.TEST: "http://localhost:8080", } From 5068e0fad8bc5cc440289fdd6aac47178b9c838c Mon Sep 17 00:00:00 2001 From: Sirshendu Ganguly Date: Fri, 10 Apr 2026 14:35:53 +0530 Subject: [PATCH 2/2] Fixed base URL --- runware/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runware/utils.py b/runware/utils.py index 53da9c1..52160e6 100644 --- a/runware/utils.py +++ b/runware/utils.py @@ -45,7 +45,7 @@ # HTTP REST base URL for streaming (e.g. textInference with deliveryMethod=stream) BASE_RUNWARE_HTTP_URLS = { - Environment.PRODUCTION: "https://api.runware.dev/v1", + Environment.PRODUCTION: "https://api.runware.ai/v1", Environment.TEST: "http://localhost:8080", }