From e7e11baa21a81a71570d5e749e0b98cef164795e Mon Sep 17 00:00:00 2001 From: Adir Amsalem Date: Thu, 23 Jul 2026 09:20:27 +0300 Subject: [PATCH] Revert "feat(models): add lucy-vton-3.5 (realtime + batch) (#62)" This reverts commit 2b9157618d5174f51588af759325242b0fd40dbd. --- decart/models.py | 17 ----------------- playground/playground.py | 1 - tests/test_models.py | 14 -------------- 3 files changed, 32 deletions(-) diff --git a/decart/models.py b/decart/models.py index 3dbe34e..b4de4df 100644 --- a/decart/models.py +++ b/decart/models.py @@ -10,7 +10,6 @@ "lucy-2.5", "lucy-vton-2", "lucy-vton-3", - "lucy-vton-3.5", "lucy-restyle-2", # Latest aliases (server-side resolution) "lucy-latest", @@ -26,7 +25,6 @@ "lucy-2.5", "lucy-vton-2", "lucy-vton-3", - "lucy-vton-3.5", "lucy-restyle-2", # Latest aliases (server-side resolution) "lucy-latest", @@ -228,13 +226,6 @@ class ImageToImageInput(DecartBaseModel): width=1088, height=624, ), - "lucy-vton-3.5": ModelDefinition( - name="lucy-vton-3.5", - url_path="/v1/stream", - fps=30, - width=1088, - height=624, - ), "lucy-2.1-vton-2": ModelDefinition( name="lucy-2.1-vton-2", url_path="/v1/stream", @@ -292,14 +283,6 @@ class ImageToImageInput(DecartBaseModel): height=624, input_schema=VideoEdit2Input, ), - "lucy-vton-3.5": ModelDefinition( - name="lucy-vton-3.5", - url_path="/v1/jobs/lucy-vton-3.5", - fps=20, - width=1088, - height=624, - input_schema=VideoEdit2Input, - ), "lucy-2.1-vton-2": ModelDefinition( name="lucy-2.1-vton-2", url_path="/v1/jobs/lucy-2.1-vton-2", diff --git a/playground/playground.py b/playground/playground.py index f8421c8..9cb12c9 100644 --- a/playground/playground.py +++ b/playground/playground.py @@ -60,7 +60,6 @@ def _check_deps() -> None: "lucy-2.1", "lucy-2.5", "lucy-vton-3", - "lucy-vton-3.5", "lucy-restyle-2", ] diff --git a/tests/test_models.py b/tests/test_models.py index 228a6eb..c279678 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -39,13 +39,6 @@ def test_canonical_realtime_models() -> None: assert model.width == 1088 assert model.height == 624 - model = models.realtime("lucy-vton-3.5") - assert model.name == "lucy-vton-3.5" - assert model.url_path == "/v1/stream" - assert model.fps == 30 - assert model.width == 1088 - assert model.height == 624 - def test_deprecated_realtime_models() -> None: _warned_aliases.clear() @@ -92,13 +85,6 @@ def test_canonical_video_models() -> None: assert model.width == 1088 assert model.height == 624 - model = models.video("lucy-vton-3.5") - assert model.name == "lucy-vton-3.5" - assert model.url_path == "/v1/jobs/lucy-vton-3.5" - assert model.fps == 20 - assert model.width == 1088 - assert model.height == 624 - model = models.video("lucy-restyle-2") assert model.name == "lucy-restyle-2" assert model.url_path == "/v1/jobs/lucy-restyle-2"