docs: clarify OLLAMA_BASE_URL supports any Ollama-compatible server#341
Open
octo-patch wants to merge 1 commit into
Open
Conversation
The docker-compose.yml comment and environment-variables docs implied that OLLAMA_BASE_URL was exclusively for Ollama. This caused confusion for users wanting to use other OpenAI-compatible local inference servers (vLLM, LM Studio, etc.) — they didn't know whether or how to adapt the Docker compose setup. Add comments to docker-compose.yml and update environment-variables.md to clarify that: - OLLAMA_BASE_URL can point to any Ollama-API-compatible server, not just Ollama itself (e.g. vLLM in Ollama mode, LM Studio) - The variable can be removed when not using local Ollama-compatible models - For non-Ollama OpenAI-compatible APIs, custom model providers should be used instead Fixes plandex-ai#321
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #321
Problem
The
docker-compose.ymlandenvironment-variables.mddocumentation implied thatOLLAMA_BASE_URLis exclusively for Ollama, causing confusion for users who want to use other local inference servers like vLLM. The question "Plandex Docker compose is Ollama only?" comes from this ambiguity.Solution
docker-compose.ymlclarifying thatOLLAMA_BASE_URLcan point to any Ollama-API-compatible server, not just Ollama (e.g. vLLM in Ollama mode, LM Studio in Ollama mode).docs/docs/environment-variables.mdwith the same clarifications.Testing
Documentation-only change, no functional code was modified.