diff options
author | Jinwoo Jeong <33892306+williamjeong2@users.noreply.github.com> | 2023-07-12 01:12:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 19:12:35 +0300 |
commit | 3ec7e596b2ba3f43c22f441254ca2bcfa91102ba (patch) | |
tree | 990bff15988666dd90d5fe8321bf1b20934aa458 | |
parent | 917831c63a4138814d23da1917bf2b5d5b9faa6c (diff) |
docker : add '--server' option (#2174)
-rwxr-xr-x | .devops/tools.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.devops/tools.sh b/.devops/tools.sh index 860a7e8..efdd666 100755 --- a/.devops/tools.sh +++ b/.devops/tools.sh @@ -26,6 +26,8 @@ elif [[ $arg1 == '--all-in-one' || $arg1 == '-a' ]]; then ./quantize "$i" "${i/f16/q4_0}" q4_0 fi done +elif [[ $arg1 == '--server' || $arg1 == '-s' ]]; then + ./server $arg2 else echo "Unknown command: $arg1" echo "Available commands: " @@ -37,4 +39,6 @@ else echo " ex: \"/models/7B/ggml-model-f16.bin\" \"/models/7B/ggml-model-q4_0.bin\" 2" echo " --all-in-one (-a): Execute --convert & --quantize" echo " ex: \"/models/\" 7B" + echo " --server (-s): Run a model on the server" + echo " ex: -m /models/7B/ggml-model-q4_0.bin -c 2048 -ngl 43 -mg 1 --port 8080" fi |