Has-ai commited on
Commit
35468c2
·
1 Parent(s): 06219a7

Update first_app

Browse files
Files changed (1) hide show
  1. first_app.py +3 -1
first_app.py CHANGED
@@ -1,11 +1,13 @@
1
  import gradio as gr
 
2
 
3
  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
  interface = gr.Interface.load("huggingface/pranavpsv/gpt2-genre-story-generator",
8
  description=description,
 
 
9
  examples=examples
10
  )
11
 
 
1
  import gradio as gr
2
+ from gradio import inputs
3
 
4
  description = "Story generation with GPT-2"
 
5
  examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
6
 
7
  interface = gr.Interface.load("huggingface/pranavpsv/gpt2-genre-story-generator",
8
  description=description,
9
+ title = "Generate your own story",
10
+ inputs = [gr.inputs.Textbox(lines=3, label="Start your story"), ],
11
  examples=examples
12
  )
13