GITBOOK-121: No subject

This commit is contained in:
Mohamed Marrouchi 2024-12-21 15:23:15 +00:00 committed by gitbook-bot
parent 14de5f7e89
commit 7f5289c9b2
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -77,6 +77,14 @@ This will copy the `.env.example` file to `.env` in the `./docker` directory if
hexabot dev --services ollama
```
Notice that we added an extra service called [Ollama](https://ollama.com/). Ollama makes it easy to get up and running with large language models locally. Make sure to SSH into the container and pull the model(s) you would like to use:
```
docker exec -it ollama ollama pull tinyllama
```
You can pull different models, a complete reference of all the Ollama models can be found here: [https://ollama.com/library](https://ollama.com/library).
{% hint style="info" %}
**Note:** The first time you run the app, Docker will take some time to download all the required images
{% endhint %}