Sergidev commited on
Commit
cf0efb2
1 Parent(s): 9f6f536
Files changed (1) hide show
  1. start.py +3 -1
start.py CHANGED
@@ -4,4 +4,6 @@ import subprocess
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
  install_command = "pip install llama-cpp-python"
7
- subprocess.run(install_command, shell=True)
 
 
 
4
  subprocess.run("pip uninstall -y llama-cpp-python", shell=True)
5
 
6
  install_command = "pip install llama-cpp-python"
7
+ subprocess.run(install_command, shell=True)
8
+
9
+ subprocess.run("uvicorn app:app --host 0.0.0.0 --port 7860", shell=True)