mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-14 14:28:58 +01: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
|