soumo-hug commited on
Commit
2ffc227
·
verified ·
1 Parent(s): 9274314

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -55,10 +55,10 @@ def setup_llama():
55
  def start_server(model_path):
56
  subprocess.Popen([
57
  "./build/bin/llama-server",
58
- "-m", model_path,
59
- "--port", SERVER_PORT,
60
- "--ctx-size", "4096",
61
- "--api"
62
  ], cwd=LLAMA_DIR)
63
 
64
 
 
55
  def start_server(model_path):
56
  subprocess.Popen([
57
  "./build/bin/llama-server",
58
+ "-m", model_path,
59
+ "--port", SERVER_PORT,
60
+ "-c", "4096",
61
+ "-t", "8"
62
  ], cwd=LLAMA_DIR)
63
 
64