Skip to content

Commit

Permalink
fix(api): match LPW parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Apr 27, 2023
1 parent 47d80b0 commit d2baa32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/onnx_web/diffusers/pipelines/panorama.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@ def __call__(

def img2img(
self,
prompt: Union[str, List[str]] = None,
image: Union[np.ndarray, PIL.Image.Image] = None,
prompt: Union[str, List[str]] = None,
strength: float = 0.8,
num_inference_steps: Optional[int] = 50,
guidance_scale: Optional[float] = 7.5,
Expand Down

0 comments on commit d2baa32

Please sign in to comment.