MarcosFRGames commited on
Commit
5ffe75f
·
verified ·
1 Parent(s): abf7e5e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -9,6 +9,10 @@ import tempfile
9
  import json
10
  import gc
11
  from concurrent.futures import ThreadPoolExecutor
 
 
 
 
12
 
13
  app = Flask(__name__)
14
  logging.basicConfig(level=logging.INFO)
 
9
  import json
10
  import gc
11
  from concurrent.futures import ThreadPoolExecutor
12
+ import subprocess
13
+ import sys
14
+
15
+ subprocess.check_call([sys.executable, "-m", "pip", "install", "llama-cpp-python==0.3.15"])
16
 
17
  app = Flask(__name__)
18
  logging.basicConfig(level=logging.INFO)