jpdiazpardo commited on
Commit
e891b09
1 Parent(s): a47744b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -45,7 +45,9 @@ description = ("Transcribe long-form microphone or audio inputs with the click o
45
  " of arbitrary length.")
46
 
47
 
48
- demo = gr.Interface(fn=transcribe, inputs = inputs, outputs = outputs, description=description, cache_examples=True, allow_flagging="never")
 
 
49
 
50
  demo.queue(concurrency_count=3)
51
  demo.launch(debug = True)
 
45
  " of arbitrary length.")
46
 
47
 
48
+ examples = [["When a Demon Defiles a Witch.wav"]]
49
+
50
+ demo = gr.Interface(fn=transcribe, inputs = inputs, outputs = outputs, description=description, cache_examples=True, allow_flagging="never", examples=examples)
51
 
52
  demo.queue(concurrency_count=3)
53
  demo.launch(debug = True)