DarwinAnim8or commited on
Commit
1ca9fe6
·
1 Parent(s): 31f71ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -24,7 +24,9 @@ demo = gr.Interface(
24
  fn=generate,
25
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
26
  outputs=gr.outputs.Textbox(label="Generated Text"),
27
- examples=examples
 
 
28
  )
29
 
30
  demo.launch()
 
24
  fn=generate,
25
  inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
26
  outputs=gr.outputs.Textbox(label="Generated Text"),
27
+ examples=examples,
28
+ title="'NoSleep' Writing Prompt Generator",
29
+ description="This aims to generate horror story, aka 'NoSleep' writing prompts. You can use this in tandem with: https://huggingface.co/spaces/DarwinAnim8or/NoSleep-Story-Generator.\n Right now, it's recommended to only input '[WP] ' as the input text; I'm working on updating this model to generate a prompt from a description of a story."
30
  )
31
 
32
  demo.launch()