Edward Nagy commited on
Commit
e3169c4
1 Parent(s): 6b2e4e2

Set exact gradio version

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -4,6 +4,9 @@ import requests
4
  from moviepy.editor import *
5
  import os
6
 
 
 
 
7
  pipe = pipeline(model="esnagy/whisper-small-hu")
8
 
9
 
 
4
  from moviepy.editor import *
5
  import os
6
 
7
+ os.system("pip uninstall -y gradio")
8
+ os.system("pip install gradio==4.8.0")
9
+
10
  pipe = pipeline(model="esnagy/whisper-small-hu")
11
 
12