Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,9 @@ description = "Story generation with GPT-2"
|
|
4 |
title = "Generate your own story"
|
5 |
examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
|
6 |
|
7 |
-
iface = gr.Interface
|
|
|
|
|
|
|
8 |
|
9 |
-
iface.launch(
|
|
|
4 |
title = "Generate your own story"
|
5 |
examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
|
6 |
|
7 |
+
iface = gr.Interface(
|
8 |
+
description=description,
|
9 |
+
examples=examples
|
10 |
+
)
|
11 |
|
12 |
+
iface.launch()
|