Illustre commited on
Commit
b8b3e42
1 Parent(s): 1f1d405

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def inference(prompt: str) -> str:
13
  guidance_scale: float = 15.0
14
  num_inference_steps: int = 64
15
 
16
- return Model.run_text(prompt, seed, guidance_scale, num_inference_steps)
17
 
18
  demo = gr.Interface(
19
  fn=inference,
 
13
  guidance_scale: float = 15.0
14
  num_inference_steps: int = 64
15
 
16
+ return Model.run_text(Model(), prompt, seed, guidance_scale, num_inference_steps)
17
 
18
  demo = gr.Interface(
19
  fn=inference,