Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,8 @@ import requests
|
|
| 3 |
import json
|
| 4 |
import base64
|
| 5 |
|
| 6 |
-
os.system('git clone
|
|
|
|
| 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')
|