jpdiazpardo commited on
Commit
2994d17
1 Parent(s): 240d92c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -124,9 +124,14 @@ with gr.Blocks() as demo:
124
 
125
  with gr.Column():
126
  gr.Interface(title = title, fn=transcribe, inputs = inputs, outputs = outputs,
127
- description=description, cache_examples=True, allow_flagging="never", article = article,
128
- examples="examples/When a Demon Defiles a Witch.wav"
129
- )
 
 
 
 
 
130
 
131
  demo.queue(concurrency_count=3)
132
  demo.launch(debug = True)
 
124
 
125
  with gr.Column():
126
  gr.Interface(title = title, fn=transcribe, inputs = inputs, outputs = outputs,
127
+ description=description, allow_flagging="never", article = article
128
+ )
129
+
130
+ gr.examples(examples=["Demon"],
131
+ inputs = ["https://www.youtube.com/watch?v=W72Lnz1n-jw&ab_channel=Whitechapel-Topic",
132
+ "<a href='https://www.linkedin.com/in/juanpablodiazp/'",
133
+ "examples/When a Demon Defiles a Witch.wav",True, True]
134
+ )
135
 
136
  demo.queue(concurrency_count=3)
137
  demo.launch(debug = True)