From 7f5289c9b26c1f0fdbcd0a832618cad00135b80c Mon Sep 17 00:00:00 2001 From: Mohamed Marrouchi Date: Sat, 21 Dec 2024 15:23:15 +0000 Subject: [PATCH] GITBOOK-121: No subject --- docs/quickstart/installation.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/quickstart/installation.md b/docs/quickstart/installation.md index 41415492..d75d4ff5 100644 --- a/docs/quickstart/installation.md +++ b/docs/quickstart/installation.md @@ -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 %}