From 7a00a07398d9f27b3ac2124e9c4e434d34cea21b Mon Sep 17 00:00:00 2001 From: sabaimran Date: Thu, 21 Nov 2024 07:48:18 -0800 Subject: [PATCH] Add trailing slash to Ollama url in docs --- documentation/docs/advanced/ollama.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/advanced/ollama.mdx b/documentation/docs/advanced/ollama.mdx index 2557c7b4..ef5295ef 100644 --- a/documentation/docs/advanced/ollama.mdx +++ b/documentation/docs/advanced/ollama.mdx @@ -46,9 +46,9 @@ Restart your Khoj server after first run or update to the settings below to ensu ```bash 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 - export OPENAI_API_BASE="http://localhost:11434/v1" + export OPENAI_API_BASE="http://localhost:11434/v1/" khoj --anonymous-mode ```