Add trailing slash to Ollama url in docs

This commit is contained in:
sabaimran 2024-11-21 07:48:18 -08:00
parent 3519dd76f0
commit 7a00a07398

View file

@ -46,9 +46,9 @@ Restart your Khoj server after first run or update to the settings below to ensu
```bash ```bash
ollama pull llama3.1 ollama pull llama3.1
``` ```
3. Set `OPENAI_API_BASE` environment variable to `http://localhost:11434/v1` in your shell before starting Khoj for the first time 3. Set `OPENAI_API_BASE` environment variable to `http://localhost:11434/v1/` in your shell before starting Khoj for the first time
```bash ```bash
export OPENAI_API_BASE="http://localhost:11434/v1" export OPENAI_API_BASE="http://localhost:11434/v1/"
khoj --anonymous-mode khoj --anonymous-mode
``` ```
</TabItem> </TabItem>