Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -88,6 +88,7 @@ with gr.Blocks() as face:
|
|
| 88 |
options = gr.Textbox(label="predictions...")
|
| 89 |
#transcribe_btn.click(inference)
|
| 90 |
transcribe_btn.click(fn=inference, inputs=[audio, promptText, dropChoice, sliderChoice], outputs=[script, options])
|
| 91 |
-
|
|
|
|
| 92 |
|
| 93 |
face.launch()
|
|
|
|
| 88 |
options = gr.Textbox(label="predictions...")
|
| 89 |
#transcribe_btn.click(inference)
|
| 90 |
transcribe_btn.click(fn=inference, inputs=[audio, promptText, dropChoice, sliderChoice], outputs=[script, options])
|
| 91 |
+
examples = gr.Examples(examples=["Sedan, Truck, SUV", "Dalmaion, Shepherd, Lab, Mutt"],
|
| 92 |
+
inputs=[options])
|
| 93 |
|
| 94 |
face.launch()
|