Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -94,7 +94,8 @@ with gr.Blocks() as face:
|
|
94 |
transcribe_btn = gr.Button(value="Transcribe")
|
95 |
with gr.Column():
|
96 |
script = gr.Textbox(label="Transcribed text")
|
97 |
-
options = gr.Textbox(label="Predictions")
|
|
|
98 |
latestConvo = gr.Textbox(label="Running conversation")
|
99 |
#transcribe_btn.click(inference)
|
100 |
transcribe_btn.click(fn=inference, inputs=[audio, promptText, dropChoice, sliderChoice, convoState], outputs=[script, options, latestConvo])
|
|
|
94 |
transcribe_btn = gr.Button(value="Transcribe")
|
95 |
with gr.Column():
|
96 |
script = gr.Textbox(label="Transcribed text")
|
97 |
+
#options = gr.Textbox(label="Predictions")
|
98 |
+
options = gr.Radio(choices=["One", "Two", "Three", "Four", "Five"])
|
99 |
latestConvo = gr.Textbox(label="Running conversation")
|
100 |
#transcribe_btn.click(inference)
|
101 |
transcribe_btn.click(fn=inference, inputs=[audio, promptText, dropChoice, sliderChoice, convoState], outputs=[script, options, latestConvo])
|