RASMUS commited on
Commit
c0bdd08
·
verified ·
1 Parent(s): e535957

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -3,7 +3,8 @@ import requests
3
  import json
4
  import base64
5
 
6
- os.system('git clone --depth=1 https://github.com/ggerganov/whisper.cpp.git')
 
7
  os.system('git -C ./whisper.cpp reset --hard c10db6ea2883a4f77440fa8caeb296a0e351a58c')
8
  os.system('make -C ./whisper.cpp')
9
  os.system('bash ./whisper.cpp/models/download-ggml-model.sh small')
 
3
  import json
4
  import base64
5
 
6
+ os.system('git clone https://github.com/ggerganov/whisper.cpp.git')
7
+ os.system('git -C ./whisper.cpp fetch origin c10db6ea2883a4f77440fa8caeb296a0e351a58c')
8
  os.system('git -C ./whisper.cpp reset --hard c10db6ea2883a4f77440fa8caeb296a0e351a58c')
9
  os.system('make -C ./whisper.cpp')
10
  os.system('bash ./whisper.cpp/models/download-ggml-model.sh small')