xyplon commited on
Commit
67c10d2
1 Parent(s): 7b472c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def Hf():
45
  'style': style
46
  })
47
  for chunk in req.iter_lines():
48
- yield f'{chunk.decode()}\n\n'
49
  return Response(Gen(prompt=prompt,negative=negative,steps=steps,width=width,height=height,scale=scale,style=style,model=model), mimetype="text/event-stream")
50
 
51
 
 
45
  'style': style
46
  })
47
  for chunk in req.iter_lines():
48
+ yield f'{chunk.decode()}\n'
49
  return Response(Gen(prompt=prompt,negative=negative,steps=steps,width=width,height=height,scale=scale,style=style,model=model), mimetype="text/event-stream")
50
 
51