Skip to content

Commit 12ba00a

Browse files
authored
fix(lucy-motion): set trajectory max-length to 1k points (#17)
fix(lucy-motion): set trajectory max-length to 1k points
1 parent 3ecb931 commit 12ba00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)