Skip to content

Commit a087717

Browse files
committed
docs: Add Ollama setup and model pull instructions to README.md
1 parent 2bd7292 commit a087717

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,19 @@ pip install -e ".[emb]"
121121

122122
> If you need fully offline installs, pre-bundle the Sentence-Transformers model in your image/host and point to it via `--emb-model` (local path).
123123
124+
### 3) LLM Re-ranking (Ollama, optional)
125+
If you intend to use the LLM re-ranking feature (available in the demo's "Advanced options"), you need to have [Ollama](https://ollama.com/) installed and the `llama3.1:8b` model pulled locally.
126+
127+
```bash
128+
# Install Ollama (if you haven't already)
129+
# Refer to https://ollama.com/download for installation instructions
130+
131+
# Pull the required LLM model
132+
ollama pull llama3.1:8b
133+
```
134+
135+
After installing Ollama and pulling the model, ensure your Ollama server is running (it usually starts automatically after installation).
136+
124137
---
125138

126139
## 📁 Project Layout

0 commit comments

Comments
 (0)