docs: add llmman as a local OpenAI-compatible provider example - #763
Open
ericcurtin wants to merge 1 commit into
Open
ericcurtin wants to merge 1 commit into
ericcurtin wants to merge 1 commit into
Conversation
llmman (https://github.com/llmmanorg/llmman) serves the Ollama and OpenAI-compatible APIs on port 17434 and already works via the generic `custom` provider, but nothing tells users which endpoint to use. Mention it next to Ollama in the README, the BYOM onboarding hint and the `ProviderConfig::Custom` doc comment. No code paths change.
ericcurtin
force-pushed
the
feat/llmman
branch
from
September 4, 2026 21:09
81786b6 to
ec87cde
Compare
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.
llmman is a local model runner that serves the Ollama and OpenAI-compatible APIs on port 17434. It already works through the generic
customprovider type, exactly like Ollama; this PR only makes it discoverable.README.md: mention llmman in "Bring Your Own LLM" and add acustomsnippet withapi_endpoint = "http://localhost:17434/v1".cli/src/onboarding/byom.rs: add llmman to the module docs and the onboarding hint.libs/shared/src/models/llm.rs: add llmman to theProviderConfig::Customdoc comment.customand needs no API key.Testing:
cargo fmt --all -- --checkandcargo check -p stakpak -p stakpak-sharedpass; docs/comments only, no code paths changed.