Skip to content

Commit b045f36

Browse files
committed
fix(lucy-motion): set trajectory max-length to 1k points
1 parent 3ecb931 commit b045f36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

decart/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class FirstLastFrameInput(DecartBaseModel):
9090

9191
class ImageToMotionVideoInput(DecartBaseModel):
9292
data: FileInput
93-
trajectory: List[MotionTrajectoryInput] = Field(..., min_length=2, max_length=121)
93+
trajectory: List[MotionTrajectoryInput] = Field(..., min_length=2, max_length=1000)
9494
seed: Optional[int] = None
9595
resolution: Optional[str] = None
9696

0 commit comments

Comments
 (0)