dwarkesh commited on
Commit
fb21a11
·
verified ·
1 Parent(s): 3d7f039

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -186,13 +186,13 @@ def create_interface():
186
  """Create the Gradio interface."""
187
  processor = TranscriptProcessor()
188
 
189
- with gr.Blocks(title="Podcast Content Generator") as app:
190
  gr.Markdown(
191
  """
192
- # Podcast Content Generator
193
- Generate preview clips, timestamps, descriptions and more from podcast transcripts or YouTube videos.
194
 
195
- Simply paste a YouTube URL or raw transcript text to get started!
196
  """
197
  )
198
 
@@ -202,7 +202,7 @@ def create_interface():
202
  file_count="single",
203
  file_types=["audio"]
204
  )
205
- submit_btn = gr.Button("Generate Content")
206
 
207
  output = gr.Markdown() # Single markdown output
208
 
 
186
  """Create the Gradio interface."""
187
  processor = TranscriptProcessor()
188
 
189
+ with gr.Blocks(title="Gemini Podcast Content Generator") as app:
190
  gr.Markdown(
191
  """
192
+ # Gemini Podcast Content Generator
193
+ Generate preview clips, timestamps, descriptions and more from an audio file using Gemini.
194
 
195
+ Simply upload an audio file to get started and Gemini handles the rest.
196
  """
197
  )
198
 
 
202
  file_count="single",
203
  file_types=["audio"]
204
  )
205
+ submit_btn = gr.Button("Generate Content with Gemini")
206
 
207
  output = gr.Markdown() # Single markdown output
208