saq1b commited on
Commit
d1ff43e
·
verified ·
1 Parent(s): f72b46d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +265 -74
app.py CHANGED
@@ -1,20 +1,23 @@
1
  import gradio as gr
2
  from pydub import AudioSegment
3
- from google import genai
4
- from google.genai import types
5
  import json
6
  import uuid
 
7
  import edge_tts
8
  import asyncio
 
 
9
  import os
10
  import time
11
- from typing import List, Dict
12
 
13
  class PodcastGenerator:
14
  def __init__(self):
15
  pass
16
 
17
- async def generate_script(self, contents: list, language: str, api_key: str) -> Dict:
18
  example = """
19
  {
20
  "topic": "AGI",
@@ -23,7 +26,186 @@ class PodcastGenerator:
23
  "speaker": 2,
24
  "line": "So, AGI, huh? Seems like everyone's talking about it these days."
25
  },
26
- # ... (rest of the example JSON structure remains the same)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ]
28
  }
29
  """
@@ -45,45 +227,45 @@ You are a professional podcast generator. Your task is to generate a professiona
45
  Follow this example structure:
46
  {example}
47
  """
48
- client = genai.Client(api_key=api_key)
49
 
50
- generation_config = types.GenerationConfig(
51
- temperature=1,
52
- max_output_tokens=8192,
53
- response_mime_type="application/json",
54
- )
55
 
56
- safety_settings = {
57
- types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT: types.HarmBlockThreshold.BLOCK_NONE,
58
- types.HarmCategory.HARM_CATEGORY_HARASSMENT: types.HarmBlockThreshold.BLOCK_NONE,
59
- types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT: types.HarmBlockThreshold.BLOCK_NONE,
60
- types.HarmCategory.HARM_CATEGORY_HATE_SPEECH: types.HarmBlockThreshold.BLOCK_NONE
 
61
  }
62
 
63
- config = types.GenerateContentConfig(
64
- system_instruction=system_prompt,
65
- generation_config=generation_config,
66
- safety_settings=safety_settings
 
 
 
 
 
 
67
  )
68
 
69
  try:
70
- response = await client.aio.models.generate_content(
71
- model="gemini-1.5-flash",
72
- contents=contents,
73
- config=config
74
- )
75
  except Exception as e:
76
  if "API key not valid" in str(e):
77
  raise gr.Error("Invalid API key. Please provide a valid Gemini API key.")
78
  elif "rate limit" in str(e).lower():
79
- raise gr.Error("Rate limit exceeded. Please try again later or use your own API key.")
80
  else:
81
  raise gr.Error(f"Failed to generate podcast script: {e}")
82
 
83
- try:
84
- return json.loads(response.text)
85
- except json.JSONDecodeError:
86
- raise gr.Error("Failed to parse generated script. Please try again.")
87
 
88
  async def tts_generate(self, text: str, speaker: int, speaker1: str, speaker2: str) -> str:
89
  voice = speaker1 if speaker == 1 else speaker2
@@ -102,29 +284,50 @@ Follow this example structure:
102
  combined_audio = AudioSegment.empty()
103
  for audio_file in audio_files:
104
  combined_audio += AudioSegment.from_file(audio_file)
105
- os.remove(audio_file)
106
 
107
  output_filename = f"output_{uuid.uuid4()}.wav"
108
  combined_audio.export(output_filename, format="wav")
109
  return output_filename
110
 
111
- async def generate_podcast(self, contents: list, language: str, speaker1: str, speaker2: str, api_key: str) -> str:
112
  gr.Info("Generating podcast script...")
113
  start_time = time.time()
114
- podcast_json = await self.generate_script(contents, language, api_key)
115
  end_time = time.time()
116
- gr.Info(f"Script generated in {(end_time - start_time):.2f}s")
117
 
118
- gr.Info("Generating audio files...")
119
  start_time = time.time()
120
- audio_files = await asyncio.gather(*[
121
- self.tts_generate(item['line'], item['speaker'], speaker1, speaker2)
122
- for item in podcast_json['podcast']
123
- ])
124
  end_time = time.time()
125
- gr.Info(f"Audio generated in {(end_time - start_time):.2f}s")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
- return await self.combine_audio_files(audio_files)
 
 
 
 
 
 
 
 
128
 
129
  async def process_input(input_text: str, input_file, language: str, speaker1: str, speaker2: str, api_key: str = "") -> str:
130
  gr.Info("Starting podcast generation...")
@@ -144,49 +347,32 @@ async def process_input(input_text: str, input_file, language: str, speaker1: st
144
  speaker1 = voice_names[speaker1]
145
  speaker2 = voice_names[speaker2]
146
 
147
- contents = []
148
  if input_file:
149
- file_path = input_file.name
150
- file_size = os.path.getsize(file_path)
151
-
152
- if file_size > 20 * 1024 * 1024: # 20MB
153
- client = genai.Client(api_key=api_key or os.getenv("GENAI_API_KEY"))
154
- uploaded_file = await client.aio.files.upload(file_path)
155
- file_part = uploaded_file
156
- else:
157
- with open(file_path, 'rb') as f:
158
- file_bytes = f.read()
159
- mime_type = 'application/pdf' if file_path.lower().endswith('.pdf') else 'text/plain'
160
- file_part = types.Part.from_bytes(file_bytes, mime_type)
161
-
162
- contents = [file_part, types.Part.from_text("Generate podcast script from document")]
163
- else:
164
- contents = [
165
- types.Part.from_text(input_text),
166
- types.Part.from_text("Generate podcast script from text")
167
- ]
168
 
169
  podcast_generator = PodcastGenerator()
170
- podcast = await podcast_generator.generate_podcast(
171
- contents, language, speaker1, speaker2,
172
- api_key or os.getenv("GENAI_API_KEY")
173
- )
174
 
175
  end_time = time.time()
176
- gr.Info(f"Total time: {(end_time - start_time):.2f}s")
 
177
  return podcast
178
 
 
179
  iface = gr.Interface(
180
  fn=process_input,
181
  inputs=[
182
  gr.Textbox(label="Input Text"),
183
- gr.File(label="Or Upload PDF/TXT (≤20GB)", file_types=["pdf", "txt"]),
184
  gr.Dropdown(label="Language", choices=[
185
  "Auto Detect",
186
  "Afrikaans", "Albanian", "Amharic", "Arabic", "Armenian", "Azerbaijani",
187
  "Bahasa Indonesian", "Bangla", "Basque", "Bengali", "Bosnian", "Bulgarian",
188
  "Burmese", "Catalan", "Chinese Cantonese", "Chinese Mandarin",
189
- "Chinese Tiwanese", "Croatian", "Czech", "Danish", "Dutch", "English",
190
  "Estonian", "Filipino", "Finnish", "French", "Galician", "Georgian",
191
  "German", "Greek", "Hebrew", "Hindi", "Hungarian", "Icelandic", "Irish",
192
  "Italian", "Japanese", "Javanese", "Kannada", "Kazakh", "Khmer", "Korean",
@@ -196,7 +382,8 @@ iface = gr.Interface(
196
  "Slovak", "Slovene", "Somali", "Spanish", "Sundanese", "Swahili",
197
  "Swedish", "Tamil", "Telugu", "Thai", "Turkish", "Ukrainian", "Urdu",
198
  "Uzbek", "Vietnamese", "Welsh", "Zulu"
199
- ], value="Auto Detect"),
 
200
  gr.Dropdown(label="Speaker 1 Voice", choices=[
201
  "Andrew - English (United States)",
202
  "Ava - English (United States)",
@@ -206,7 +393,8 @@ iface = gr.Interface(
206
  "Seraphina - German (Germany)",
207
  "Remy - French (France)",
208
  "Vivienne - French (France)"
209
- ], value="Andrew - English (United States)"),
 
210
  gr.Dropdown(label="Speaker 2 Voice", choices=[
211
  "Andrew - English (United States)",
212
  "Ava - English (United States)",
@@ -216,12 +404,15 @@ iface = gr.Interface(
216
  "Seraphina - German (Germany)",
217
  "Remy - French (France)",
218
  "Vivienne - French (France)"
219
- ], value="Ava - English (United States)"),
220
- gr.Textbox(label="Gemini API Key (Optional)"),
 
 
 
 
221
  ],
222
- outputs=gr.Audio(label="Generated Podcast"),
223
  title="PodcastGen 🎙️",
224
- description="Generate 2-speaker podcasts from text or documents using Gemini!",
225
  allow_flagging="never"
226
  )
227
 
 
1
  import gradio as gr
2
  from pydub import AudioSegment
3
+ import google.generativeai as genai
4
+ from google.generativeai.types import HarmCategory, HarmBlockThreshold
5
  import json
6
  import uuid
7
+ import io
8
  import edge_tts
9
  import asyncio
10
+ import aiofiles
11
+ import pypdf
12
  import os
13
  import time
14
+ from typing import List, Dict, Tuple
15
 
16
  class PodcastGenerator:
17
  def __init__(self):
18
  pass
19
 
20
+ async def generate_script(self, prompt: str, language: str, api_key: str) -> Dict:
21
  example = """
22
  {
23
  "topic": "AGI",
 
26
  "speaker": 2,
27
  "line": "So, AGI, huh? Seems like everyone's talking about it these days."
28
  },
29
+ {
30
+ "speaker": 1,
31
+ "line": "Yeah, it's definitely having a moment, isn't it?"
32
+ },
33
+ {
34
+ "speaker": 2,
35
+ "line": "It is and for good reason, right? I mean, you've been digging into this stuff, listening to the podcasts and everything. What really stood out to you? What got you hooked?"
36
+ },
37
+ {
38
+ "speaker": 1,
39
+ "line": "Honestly, it's the sheer scale of what AGI could do. We're talking about potentially reshaping well everything."
40
+ },
41
+ {
42
+ "speaker": 2,
43
+ "line": "No kidding, but let's be real. Sometimes it feels like every other headline is either hyping AGI up as this technological utopia or painting it as our inevitable robot overlords."
44
+ },
45
+ {
46
+ "speaker": 1,
47
+ "line": "It's easy to get lost in the noise, for sure."
48
+ },
49
+ {
50
+ "speaker": 2,
51
+ "line": "Exactly. So how about we try to cut through some of that, shall we?"
52
+ },
53
+ {
54
+ "speaker": 1,
55
+ "line": "Sounds like a plan."
56
+ },
57
+ {
58
+ "speaker": 2,
59
+ "line": "Okay, so first things first, AGI, what is it really? And I don't just mean some dictionary definition, we're talking about something way bigger than just a super smart computer, right?"
60
+ },
61
+ {
62
+ "speaker": 1,
63
+ "line": "Right, it's not just about more processing power or better algorithms, it's about a fundamental shift in how we think about intelligence itself."
64
+ },
65
+ {
66
+ "speaker": 2,
67
+ "line": "So like, instead of programming a machine for a specific task, we're talking about creating something that can learn and adapt like we do."
68
+ },
69
+ {
70
+ "speaker": 1,
71
+ "line": "Exactly, think of it this way: Right now, we've got AI that can beat a grandmaster at chess but ask that same AI to, say, write a poem or compose a symphony. No chance."
72
+ },
73
+ {
74
+ "speaker": 2,
75
+ "line": "Okay, I see. So, AGI is about bridging that gap, creating something that can move between those different realms of knowledge seamlessly."
76
+ },
77
+ {
78
+ "speaker": 1,
79
+ "line": "Precisely. It's about replicating that uniquely human ability to learn something new and apply that knowledge in completely different contexts and that's a tall order, let me tell you."
80
+ },
81
+ {
82
+ "speaker": 2,
83
+ "line": "I bet. I mean, think about how much we still don't even understand about our own brains."
84
+ },
85
+ {
86
+ "speaker": 1,
87
+ "line": "That's exactly it. We're essentially trying to reverse-engineer something we don't fully comprehend."
88
+ },
89
+ {
90
+ "speaker": 2,
91
+ "line": "And how are researchers even approaching that? What are some of the big ideas out there?"
92
+ },
93
+ {
94
+ "speaker": 1,
95
+ "line": "Well, there are a few different schools of thought. One is this idea of neuromorphic computing where they're literally trying to build computer chips that mimic the structure and function of the human brain."
96
+ },
97
+ {
98
+ "speaker": 2,
99
+ "line": "Wow, so like actually replicating the physical architecture of the brain. That's wild."
100
+ },
101
+ {
102
+ "speaker": 1,
103
+ "line": "It's pretty mind-blowing stuff and then you've got folks working on something called whole brain emulation."
104
+ },
105
+ {
106
+ "speaker": 2,
107
+ "line": "Okay, and what's that all about?"
108
+ },
109
+ {
110
+ "speaker": 1,
111
+ "line": "The basic idea there is to create a complete digital copy of a human brain down to the last neuron and synapse and run it on a sufficiently powerful computer simulation."
112
+ },
113
+ {
114
+ "speaker": 2,
115
+ "line": "Hold on, a digital copy of an entire brain, that sounds like something straight out of science fiction."
116
+ },
117
+ {
118
+ "speaker": 1,
119
+ "line": "It does, doesn't it? But it gives you an idea of the kind of ambition we're talking about here and the truth is we're still a long way off from truly achieving AGI, no matter which approach you look at."
120
+ },
121
+ {
122
+ "speaker": 2,
123
+ "line": "That makes sense but it's still exciting to think about the possibilities, even if they're a ways off."
124
+ },
125
+ {
126
+ "speaker": 1,
127
+ "line": "Absolutely and those possibilities are what really get people fired up about AGI, right? Yeah."
128
+ },
129
+ {
130
+ "speaker": 2,
131
+ "line": "For sure. In fact, I remember you mentioning something in that podcast about AGI's potential to revolutionize scientific research. Something about supercharging breakthroughs."
132
+ },
133
+ {
134
+ "speaker": 1,
135
+ "line": "Oh, absolutely. Imagine an AI that doesn't just crunch numbers but actually understands scientific data the way a human researcher does. We're talking about potential breakthroughs in everything from medicine and healthcare to material science and climate change."
136
+ },
137
+ {
138
+ "speaker": 2,
139
+ "line": "It's like giving scientists this incredibly powerful new tool to tackle some of the biggest challenges we face."
140
+ },
141
+ {
142
+ "speaker": 1,
143
+ "line": "Exactly, it could be a total game changer."
144
+ },
145
+ {
146
+ "speaker": 2,
147
+ "line": "Okay, but let's be real, every coin has two sides. What about the potential downsides of AGI? Because it can't all be sunshine and roses, right?"
148
+ },
149
+ {
150
+ "speaker": 1,
151
+ "line": "Right, there are definitely valid concerns. Probably the biggest one is the impact on the job market. As AGI gets more sophisticated, there's a real chance it could automate a lot of jobs that are currently done by humans."
152
+ },
153
+ {
154
+ "speaker": 2,
155
+ "line": "So we're not just talking about robots taking over factories but potentially things like, what, legal work, analysis, even creative fields?"
156
+ },
157
+ {
158
+ "speaker": 1,
159
+ "line": "Potentially, yes. And that raises a whole host of questions about what happens to those workers, how we retrain them, how we ensure that the benefits of AGI are shared equitably."
160
+ },
161
+ {
162
+ "speaker": 2,
163
+ "line": "Right, because it's not just about the technology itself, but how we choose to integrate it into society."
164
+ },
165
+ {
166
+ "speaker": 1,
167
+ "line": "Absolutely. We need to be having these conversations now about ethics, about regulation, about how to make sure AGI is developed and deployed responsibly."
168
+ },
169
+ {
170
+ "speaker": 2,
171
+ "line": "So it's less about preventing some kind of sci-fi robot apocalypse and more about making sure we're steering this technology in the right direction from the get-go."
172
+ },
173
+ {
174
+ "speaker": 1,
175
+ "line": "Exactly, AGI has the potential to be incredibly beneficial, but it's not going to magically solve all our problems. It's on us to make sure we're using it for good."
176
+ },
177
+ {
178
+ "speaker": 2,
179
+ "line": "It's like you said earlier, it's about shaping the future of intelligence."
180
+ },
181
+ {
182
+ "speaker": 1,
183
+ "line": "I like that. It really is."
184
+ },
185
+ {
186
+ "speaker": 2,
187
+ "line": "And honestly, that's a responsibility that extends beyond just the researchers and the policymakers."
188
+ },
189
+ {
190
+ "speaker": 1,
191
+ "line": "100%"
192
+ },
193
+ {
194
+ "speaker": 2,
195
+ "line": "So to everyone listening out there I'll leave you with this. As AGI continues to develop, what role do you want to play in shaping its future?"
196
+ },
197
+ {
198
+ "speaker": 1,
199
+ "line": "That's a question worth pondering."
200
+ },
201
+ {
202
+ "speaker": 2,
203
+ "line": "It certainly is and on that note, we'll wrap up this deep dive. Thanks for listening, everyone."
204
+ },
205
+ {
206
+ "speaker": 1,
207
+ "line": "Peace."
208
+ }
209
  ]
210
  }
211
  """
 
227
  Follow this example structure:
228
  {example}
229
  """
230
+ user_prompt = f"Please generate a podcast script based on the following user input:\n{prompt}"
231
 
232
+ messages = [
233
+ {"role": "user", "parts": [user_prompt]}
234
+ ]
 
 
235
 
236
+ genai.configure(api_key=api_key)
237
+
238
+ generation_config = {
239
+ "temperature": 1,
240
+ "max_output_tokens": 8192,
241
+ "response_mime_type": "application/json",
242
  }
243
 
244
+ model = genai.GenerativeModel(
245
+ model_name="gemini-2.0-flash",
246
+ generation_config=generation_config,
247
+ safety_settings={
248
+ HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT: HarmBlockThreshold.BLOCK_NONE,
249
+ HarmCategory.HARM_CATEGORY_HARASSMENT: HarmBlockThreshold.BLOCK_NONE,
250
+ HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT: HarmBlockThreshold.BLOCK_NONE,
251
+ HarmCategory.HARM_CATEGORY_HATE_SPEECH: HarmBlockThreshold.BLOCK_NONE
252
+ },
253
+ system_instruction=system_prompt
254
  )
255
 
256
  try:
257
+ response = await model.generate_content_async(messages)
 
 
 
 
258
  except Exception as e:
259
  if "API key not valid" in str(e):
260
  raise gr.Error("Invalid API key. Please provide a valid Gemini API key.")
261
  elif "rate limit" in str(e).lower():
262
+ raise gr.Error("Rate limit exceeded for the API key. Please try again later or provide your own Gemini API key.")
263
  else:
264
  raise gr.Error(f"Failed to generate podcast script: {e}")
265
 
266
+ print(f"Generated podcast script:\n{response.text}")
267
+
268
+ return json.loads(response.text)
 
269
 
270
  async def tts_generate(self, text: str, speaker: int, speaker1: str, speaker2: str) -> str:
271
  voice = speaker1 if speaker == 1 else speaker2
 
284
  combined_audio = AudioSegment.empty()
285
  for audio_file in audio_files:
286
  combined_audio += AudioSegment.from_file(audio_file)
287
+ os.remove(audio_file) # Clean up temporary files
288
 
289
  output_filename = f"output_{uuid.uuid4()}.wav"
290
  combined_audio.export(output_filename, format="wav")
291
  return output_filename
292
 
293
+ async def generate_podcast(self, input_text: str, language: str, speaker1: str, speaker2: str, api_key: str) -> str:
294
  gr.Info("Generating podcast script...")
295
  start_time = time.time()
296
+ podcast_json = await self.generate_script(input_text, language, api_key)
297
  end_time = time.time()
298
+ gr.Info(f"Successfully generated podcast script in {(end_time - start_time):.2f} seconds!")
299
 
300
+ gr.Info("Generating podcast audio files...")
301
  start_time = time.time()
302
+ audio_files = await asyncio.gather(*[self.tts_generate(item['line'], item['speaker'], speaker1, speaker2) for item in podcast_json['podcast']])
 
 
 
303
  end_time = time.time()
304
+ gr.Info(f"Successfully generated podcast audio files in {(end_time - start_time):.2f} seconds!")
305
+
306
+ combined_audio = await self.combine_audio_files(audio_files)
307
+ return combined_audio
308
+
309
+ class TextExtractor:
310
+ @staticmethod
311
+ async def extract_from_pdf(file_path: str) -> str:
312
+ async with aiofiles.open(file_path, 'rb') as file:
313
+ content = await file.read()
314
+ pdf_reader = pypdf.PdfReader(io.BytesIO(content))
315
+ return "\n\n".join(page.extract_text() for page in pdf_reader.pages if page.extract_text())
316
+
317
+ @staticmethod
318
+ async def extract_from_txt(file_path: str) -> str:
319
+ async with aiofiles.open(file_path, 'r') as file:
320
+ return await file.read()
321
 
322
+ @classmethod
323
+ async def extract_text(cls, file_path: str) -> str:
324
+ _, file_extension = os.path.splitext(file_path)
325
+ if file_extension.lower() == '.pdf':
326
+ return await cls.extract_from_pdf(file_path)
327
+ elif file_extension.lower() == '.txt':
328
+ return await cls.extract_from_txt(file_path)
329
+ else:
330
+ raise gr.Error(f"Unsupported file type: {file_extension}")
331
 
332
  async def process_input(input_text: str, input_file, language: str, speaker1: str, speaker2: str, api_key: str = "") -> str:
333
  gr.Info("Starting podcast generation...")
 
347
  speaker1 = voice_names[speaker1]
348
  speaker2 = voice_names[speaker2]
349
 
 
350
  if input_file:
351
+ input_text = await TextExtractor.extract_text(input_file.name)
352
+
353
+ if not api_key:
354
+ api_key = os.getenv("GENAI_API_KEY")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
 
356
  podcast_generator = PodcastGenerator()
357
+ podcast = await podcast_generator.generate_podcast(input_text, language, speaker1, speaker2, api_key)
 
 
 
358
 
359
  end_time = time.time()
360
+ gr.Info(f"Successfully generated podcast in {(end_time - start_time):.2f} seconds!")
361
+
362
  return podcast
363
 
364
+ # Define Gradio interface
365
  iface = gr.Interface(
366
  fn=process_input,
367
  inputs=[
368
  gr.Textbox(label="Input Text"),
369
+ gr.File(label="Or Upload a PDF or TXT file"),
370
  gr.Dropdown(label="Language", choices=[
371
  "Auto Detect",
372
  "Afrikaans", "Albanian", "Amharic", "Arabic", "Armenian", "Azerbaijani",
373
  "Bahasa Indonesian", "Bangla", "Basque", "Bengali", "Bosnian", "Bulgarian",
374
  "Burmese", "Catalan", "Chinese Cantonese", "Chinese Mandarin",
375
+ "Chinese Taiwanese", "Croatian", "Czech", "Danish", "Dutch", "English",
376
  "Estonian", "Filipino", "Finnish", "French", "Galician", "Georgian",
377
  "German", "Greek", "Hebrew", "Hindi", "Hungarian", "Icelandic", "Irish",
378
  "Italian", "Japanese", "Javanese", "Kannada", "Kazakh", "Khmer", "Korean",
 
382
  "Slovak", "Slovene", "Somali", "Spanish", "Sundanese", "Swahili",
383
  "Swedish", "Tamil", "Telugu", "Thai", "Turkish", "Ukrainian", "Urdu",
384
  "Uzbek", "Vietnamese", "Welsh", "Zulu"
385
+ ],
386
+ value="Auto Detect"),
387
  gr.Dropdown(label="Speaker 1 Voice", choices=[
388
  "Andrew - English (United States)",
389
  "Ava - English (United States)",
 
393
  "Seraphina - German (Germany)",
394
  "Remy - French (France)",
395
  "Vivienne - French (France)"
396
+ ],
397
+ value="Andrew - English (United States)"),
398
  gr.Dropdown(label="Speaker 2 Voice", choices=[
399
  "Andrew - English (United States)",
400
  "Ava - English (United States)",
 
404
  "Seraphina - German (Germany)",
405
  "Remy - French (France)",
406
  "Vivienne - French (France)"
407
+ ],
408
+ value="Ava - English (United States)"),
409
+ gr.Textbox(label="Your Gemini API Key (Optional) - In case you are getting rate limited"),
410
+ ],
411
+ outputs=[
412
+ gr.Audio(label="Generated Podcast Audio")
413
  ],
 
414
  title="PodcastGen 🎙️",
415
+ description="Generate a 2-speaker podcast from text input or documents!",
416
  allow_flagging="never"
417
  )
418