theotherdylan commited on
Commit
8d7efeb
1 Parent(s): 5bea577
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def ollama_service_thread():
22
 
23
  print("Giving ollama serve a moment")
24
  time.sleep(10)
25
- subprocess.run("~/ollama pull tinydolphin:latest")
26
 
27
 
28
  OLLAMA_SERVICE_THREAD = threading.Thread(target=ollama_service_thread)
 
22
 
23
  print("Giving ollama serve a moment")
24
  time.sleep(10)
25
+ subprocess.run("~/ollama pull tinydolphin:latest", shell=True)
26
 
27
 
28
  OLLAMA_SERVICE_THREAD = threading.Thread(target=ollama_service_thread)