fffiloni commited on
Commit
af74651
1 Parent(s): 9ac6b43

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -36,4 +36,5 @@ def generate_images(story_text):
36
  def app(text):
37
  story = generate_story(text)
38
  return story
39
-
 
 
36
  def app(text):
37
  story = generate_story(text)
38
  return story
39
+
40
+ gr.Interface(fn=app, inputs=[gr.Textbox()], outputs=[gr.Textbox()]).launch()