Skip to content

Commit

Permalink
simple patch to solve the go api bindings issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jjassonn committed Jul 26, 2024
1 parent 796796d commit b5eb66d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runner/app/routes/frame_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
)
async def frame_interpolation(
model_id: Annotated[str, Form()],
image1: Annotated[Optional[UploadFile], File()]=None,
image2: Annotated[Optional[UploadFile], File()]=None,
image_dir: Annotated[Optional[str], Form()]="",
image1: Annotated[UploadFile, File()]=None,
image2: Annotated[UploadFile, File()]=None,
image_dir: Annotated[str, Form()]="",
inter_frames: Annotated[int, Form()] = 2,
token: HTTPAuthorizationCredentials = Depends(HTTPBearer(auto_error=False)),
):
Expand Down

0 comments on commit b5eb66d

Please sign in to comment.