Update app.py
Browse files
app.py
CHANGED
|
@@ -23,9 +23,8 @@ server = subprocess.Popen([
|
|
| 23 |
"-c", "5096",
|
| 24 |
"-t", "4",
|
| 25 |
"--host", "0.0.0.0",
|
| 26 |
-
"--port", "8080"
|
| 27 |
-
|
| 28 |
-
"--cache-ram", "0", # disable prompt cache — prevents slowdown on repeated runs
|
| 29 |
])
|
| 30 |
|
| 31 |
print("Starting llama-server, waiting 8 seconds...")
|
|
|
|
| 23 |
"-c", "5096",
|
| 24 |
"-t", "4",
|
| 25 |
"--host", "0.0.0.0",
|
| 26 |
+
"--port", "8080"
|
| 27 |
+
# disable prompt cache — prevents slowdown on repeated runs
|
|
|
|
| 28 |
])
|
| 29 |
|
| 30 |
print("Starting llama-server, waiting 8 seconds...")
|