mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 11:24:35 +00:00
7 lines
115 B
Bash
7 lines
115 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
PORT=${PORT:-8080}
|
||
|
MODEL=${MODEL:-models/7B/ggml-model-q4_0.bin}
|
||
|
|
||
|
./main -l ${PORT} -m $MODEL
|