Update app.py
Browse files
app.py
CHANGED
|
@@ -473,13 +473,13 @@ def create_interface():
|
|
| 473 |
google_api_key_input = gr.Textbox(
|
| 474 |
label="Google API Key", type="password",
|
| 475 |
placeholder="Enter your Google API Key here",
|
| 476 |
-
info="
|
| 477 |
)
|
| 478 |
input_audio = gr.File(
|
| 479 |
label="Upload Audio File", file_count="single",
|
| 480 |
file_types=["audio", ".mp3", ".wav", ".ogg", ".flac", ".m4a", ".aac"]
|
| 481 |
)
|
| 482 |
-
submit_btn = gr.Button("Generate
|
| 483 |
|
| 484 |
gr.Markdown("### Processing Status")
|
| 485 |
output_status = gr.Textbox(label="Current Status", value="Idle.", interactive=False, lines=1, max_lines=5)
|
|
|
|
| 473 |
google_api_key_input = gr.Textbox(
|
| 474 |
label="Google API Key", type="password",
|
| 475 |
placeholder="Enter your Google API Key here",
|
| 476 |
+
info="Your GCP account needs to have billing enabled to use the 2.5 pro model."
|
| 477 |
)
|
| 478 |
input_audio = gr.File(
|
| 479 |
label="Upload Audio File", file_count="single",
|
| 480 |
file_types=["audio", ".mp3", ".wav", ".ogg", ".flac", ".m4a", ".aac"]
|
| 481 |
)
|
| 482 |
+
submit_btn = gr.Button("Generate with Gemini", variant="huggingface")
|
| 483 |
|
| 484 |
gr.Markdown("### Processing Status")
|
| 485 |
output_status = gr.Textbox(label="Current Status", value="Idle.", interactive=False, lines=1, max_lines=5)
|