Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 5 additions & 5 deletions decart/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ class ImageToImageInput(DecartBaseModel):
"lucy-2.5": ModelDefinition(
name="lucy-2.5",
url_path="/v1/stream",
fps=20,
width=1088,
height=624,
fps=30,
width=1280,
height=720,
),
"lucy-restyle-2": ModelDefinition(
name="lucy-restyle-2",
Expand Down Expand Up @@ -274,8 +274,8 @@ class ImageToImageInput(DecartBaseModel):
name="lucy-2.5",
url_path="/v1/jobs/lucy-2.5",
fps=20,
width=1088,
height=624,
width=1280,
height=720,
input_schema=VideoEdit2Input,
),
"lucy-vton-2": ModelDefinition(
Expand Down
10 changes: 5 additions & 5 deletions tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ def test_canonical_realtime_models() -> None:
model = models.realtime("lucy-2.5")
assert model.name == "lucy-2.5"
assert model.url_path == "/v1/stream"
assert model.fps == 20
assert model.width == 1088
assert model.height == 624
assert model.fps == 30
assert model.width == 1280
assert model.height == 720

model = models.realtime("lucy-vton-2")
assert model.name == "lucy-vton-2"
Expand Down Expand Up @@ -68,8 +68,8 @@ def test_canonical_video_models() -> None:
assert model.name == "lucy-2.5"
assert model.url_path == "/v1/jobs/lucy-2.5"
assert model.fps == 20
assert model.width == 1088
assert model.height == 624
assert model.width == 1280
assert model.height == 720

model = models.video("lucy-vton-2")
assert model.name == "lucy-vton-2"
Expand Down
Loading