Skip to content

Commit

Permalink
Remove FPS param for now
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk-dev committed Apr 11, 2024
1 parent b46a460 commit 3da55ac
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 28 deletions.
2 changes: 0 additions & 2 deletions runner/app/routes/text_to_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ async def text_to_video(
negative_prompt: Annotated[str, Form()] = "",
height: Annotated[int, Form()] = 576,
width: Annotated[int, Form()] = 1024,
fps: Annotated[int, Form()] = 6,
motion_bucket_id: Annotated[int, Form()] = 127,
noise_aug_strength: Annotated[float, Form()] = 0.02,
seed: Annotated[int, Form()] = None,
Expand Down Expand Up @@ -79,7 +78,6 @@ async def text_to_video(
guidance_scale=guidance_scale,
height=height,
width=width,
fps=fps,
motion_bucket_id=motion_bucket_id,
noise_aug_strength=noise_aug_strength,
seed=seed,
Expand Down
5 changes: 0 additions & 5 deletions runner/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -536,11 +536,6 @@
"type": "integer",
"title": "Seed"
},
"fps": {
"type": "integer",
"title": "Fps",
"default": 7
},
"motion_bucket_id": {
"type": "integer",
"title": "Motion Bucket Id",
Expand Down
41 changes: 20 additions & 21 deletions worker/runner.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3da55ac

Please sign in to comment.