Update app.py
Browse files
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
|
194 |
|
195 |
-
Simply
|
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 |
|