Spaces:
Paused
Paused
Update app.py
Browse files
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()
|