Change OLLAMA_API_BASE to OPENAI_BASE_URL in README

Updated environment variable name from OLLAMA_API_BASE to OPENAI_BASE_URL in README.
This commit is contained in:
Tony Carter 2025-12-03 14:34:31 -05:00 committed by GitHub
parent 93b17abdf7
commit 826be82b00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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
```