From 826be82b005c9c580a97c22b1275fcd228fe9410 Mon Sep 17 00:00:00 2001 From: Tony Carter <5090914+xtremebeing@users.noreply.github.com> Date: Wed, 3 Dec 2025 14:34:31 -0500 Subject: [PATCH] Change OLLAMA_API_BASE to OPENAI_BASE_URL in README Updated environment variable name from OLLAMA_API_BASE to OPENAI_BASE_URL in README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e8f706a..63cd31d7 100644 --- a/README.md +++ b/README.md @@ -534,12 +534,12 @@ CAI supports configuring a custom OpenAI API base URL via the `OPENAI_BASE_URL` Example `.env` entry configuration: ``` -OLLAMA_API_BASE="https://custom-openai-proxy.com/v1" +OPENAI_BASE_URL="https://custom-openai-proxy.com/v1" ``` Or directly from the command line: ```bash -OLLAMA_API_BASE="https://custom-openai-proxy.com/v1" cai +OPENAI_BASE_URL="https://custom-openai-proxy.com/v1" cai ```