jaydenccc commited on
Commit
5911668
·
1 Parent(s): 89d4483

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -34,10 +34,9 @@ if __name__ == "__main__":
34
  gr.Interface(
35
  make_inference,
36
  [
37
- gr.inputs.Textbox(lines=2, label="Product Name"),
38
- gr.inputs.Textbox(lines=5, label="Product Description"),
39
  ],
40
- gr.outputs.Textbox(label="Ad"),
41
  title="AI-Storyteller",
42
- description="AI-Storyteller is a bot that writes short stories given a one sentence synopsis",
43
  ).launch()
 
34
  gr.Interface(
35
  make_inference,
36
  [
37
+ gr.inputs.Textbox(lines=2, label="One-Sentence Plot"),
 
38
  ],
39
+ gr.outputs.Textbox(label="Short Story"),
40
  title="AI-Storyteller",
41
+ description="AI-Storyteller is a bot that writes short stories given a one-sentence synopsis",
42
  ).launch()