Spaces:
Runtime error
Runtime error
Commit
·
6b46d12
1
Parent(s):
830a45d
Update app.py
Browse files
app.py
CHANGED
@@ -42,10 +42,9 @@ with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin
|
|
42 |
gr.HTML(title)
|
43 |
with gr.Column(elem_id = "col_container"):
|
44 |
assemblyai_api_key = gr.Textbox(type='password', label="Enter your AssemblyAI API key here")
|
45 |
-
inputs = gr.Textbox(label = "Enter the url for the audio file")
|
46 |
-
transcript = gr.Textbox(label = "Transcript Result" )
|
47 |
-
|
48 |
b1 = gr.Button()
|
|
|
49 |
|
50 |
inputs.submit(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
51 |
b1.click(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
|
|
42 |
gr.HTML(title)
|
43 |
with gr.Column(elem_id = "col_container"):
|
44 |
assemblyai_api_key = gr.Textbox(type='password', label="Enter your AssemblyAI API key here")
|
45 |
+
inputs = gr.Textbox(label = "Enter the url for the audio file")
|
|
|
|
|
46 |
b1 = gr.Button()
|
47 |
+
transcript = gr.Textbox(label = "Transcript Result" )
|
48 |
|
49 |
inputs.submit(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
50 |
b1.click(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|