kartik91 commited on
Commit
7974f53
1 Parent(s): f7d98ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -77,14 +77,14 @@ description = """
77
  Upload an image, and this app will generate a short story based on the image.
78
  """
79
 
80
- chunks=[]
81
  async def sepia(input_img):
82
- global chunks
83
- async for e in chain.astream(input={"segmentation_results":input_img}):
84
  chunks.append(e)
85
  yield "".join(chunks)
86
 
87
- demo = gr.Interface(sepia, gr.Image(type='pil'), "textarea",title=title,
88
  description=description,live=True
89
  )
90
  if __name__ == "__main__":
 
77
  Upload an image, and this app will generate a short story based on the image.
78
  """
79
 
80
+
81
  async def sepia(input_img):
82
+ chunks=[]
83
+ async for e in chain.astream(input_img):
84
  chunks.append(e)
85
  yield "".join(chunks)
86
 
87
+ demo = gr.Interface(sepia, gr.Image(type='pil'),"textarea",title=title,
88
  description=description,live=True
89
  )
90
  if __name__ == "__main__":