Add llama.cpp:full image support for Chinese, and related documents(#1649)

This commit is contained in:
qingfengfenga 2023-06-02 17:40:54 +08:00
parent ffb06a345e
commit d38ad41528
2 changed files with 5 additions and 1 deletions

View file

@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
FROM ubuntu:$UBUNTU_VERSION as build
RUN apt-get update && \
apt-get install -y build-essential python3 python3-pip git
apt-get install -y build-essential python3 python3-pip git language-pack-zh-hans language-pack-zh-hant
COPY requirements.txt requirements.txt

View file

@ -633,6 +633,10 @@ or with a light image:
```bash
docker run -v /path/to/models:/models ghcr.io/ggerganov/llama.cpp:light -m /models/7B/ggml-model-q4_0.bin -p "Building a website can be done in 10 simple steps:" -n 512
```
If you want to use Chinese model, use this command.
```
docker run -v /path/to/models:/models -e LC_ALL=zh_CN.utf8 ghcr.io/ggerganov/llama.cpp:full --run -m /models/7B/ggml-model-q4_0.bin -p "Building a website can be done in 10 simple steps:" -n 512
```
### Contributing