oneuptime/Llama/Readme.md

23 lines
530 B
Markdown
Raw Normal View History

2023-10-14 15:36:12 +00:00
# Llama
## Prepare
- Download models from meta
- Once the model is downloaded, place them in the `Llama/Models` folder. Please make sure you also place tokenizer.model and tokenizer_checklist.chk in the same folder.
- Edit `Dockerfile` to include the model name in the `MODEL_NAME` variable.
- Docker build
```
2023-10-18 09:16:23 +00:00
docker build -t llama . -f ./Llama/Dockerfile
2023-10-14 15:36:12 +00:00
```
## Run
```
2023-10-18 10:01:15 +00:00
docker run -p 8547:8547 -it -v ./Llama/Models:/app/Models llama
2023-10-16 10:45:15 +00:00
```
## Run without a docker conatiner
uvicorn app:app --host 0.0.0.0 --port 8547