Spaces:
Runtime error
Runtime error
Commit
·
8963f6c
1
Parent(s):
6b46d12
Update app.py
Browse files
app.py
CHANGED
@@ -40,6 +40,7 @@ In this demo, you can explore the outputs of a Conformer-1 Speech Recognition Mo
|
|
40 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
41 |
""") as demo:
|
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")
|
@@ -49,6 +50,6 @@ with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin
|
|
49 |
inputs.submit(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
50 |
b1.click(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
51 |
|
52 |
-
|
53 |
demo.queue().launch(debug=True)
|
54 |
|
|
|
40 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
41 |
""") as demo:
|
42 |
gr.HTML(title)
|
43 |
+
gr.Markdown(description)
|
44 |
with gr.Column(elem_id = "col_container"):
|
45 |
assemblyai_api_key = gr.Textbox(type='password', label="Enter your AssemblyAI API key here")
|
46 |
inputs = gr.Textbox(label = "Enter the url for the audio file")
|
|
|
50 |
inputs.submit(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
51 |
b1.click(get_transcript_url, [inputs, assemblyai_api_key], [transcript])
|
52 |
|
53 |
+
|
54 |
demo.queue().launch(debug=True)
|
55 |
|