pcalhoun commited on
Commit
566a3b7
·
1 Parent(s): 17fd63b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -79,10 +79,12 @@ def generate_next(title,description,conversation_text):
79
 
80
 
81
  with gr.Blocks() as demo:
82
- title = gr.Textbox(label="Title")
 
83
  description = gr.Textbox(label="Description")
 
84
  conversation_text = gr.Textbox(label="Conversation")
85
- generate_button = gr.Button(label="Generate Additional CWTS Podcast Transcript")
86
  generate_button.click(fn=generate_next, inputs=[title,description,conversation_text], outputs=[title,description,conversation_text])
87
 
88
  demo.launch()
 
79
 
80
 
81
  with gr.Blocks() as demo:
82
+ gr.Markdown("Come up with a podcast title and then click 'Generate Additional CWTS Podcast Transcript Lines'")
83
+ title = gr.Textbox(label="Podcast Title")
84
  description = gr.Textbox(label="Description")
85
+ gr.Markdown("Conversation lines are separated by a linebreak followed by three hashes. This should be generated automatically. New lines can be added by clicking generated again.")
86
  conversation_text = gr.Textbox(label="Conversation")
87
+ generate_button = gr.Button(label="Generate Additional CWTS Podcast Transcript Lines")
88
  generate_button.click(fn=generate_next, inputs=[title,description,conversation_text], outputs=[title,description,conversation_text])
89
 
90
  demo.launch()