docs: cover what happens when the local Ollama server is down - #204
Merged
plombeer31 merged 1 commit intoAug 21, 2026
Merged
Conversation
- Notes the preset is a fixed http://localhost:11434 endpoint that does not probe for a running server - Describes the down-server behaviour: the wizard's model list fails with "could not list models from Ollama (local)" and falls back to typing an id by hand; the LLM panel shows "model list unavailable" - Tells the reader to start `ollama serve` and pull a model, then re-open the preset
yablokolabs
force-pushed
the
docs/ollama-server-down
branch
from
August 20, 2026 17:20
3b8af93 to
2993e6e
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.
Follow-up to the closed #128. That PR added a "New in v0.2.1 / auto-detects" note that was rightly rejected:
http://localhost:11434endpoint, not a detector (seesrc/tui/providers/provider-presets.ts)This change drops that note and instead documents the gap @sosidudku1 pointed out: what happens when the Ollama server isn't running.
Verified against the code:
src/tui/components/providers-wizard.tsx): when the fetch tohttp://localhost:11434/v1/modelsfails, the hint readscould not list models from Ollama (local)and falls back to typing a model id by hand.src/tui/components/llm-mode-rows.tsx): the model list showsmodel list unavailableand only the current model.src/tui/providers/provider-presets.ts): fixedhttp://localhost:11434, no probe — so the "auto-detects" wording was never accurate.The new sentence tells the reader to start
ollama serve(and pull the model) and re-open the preset.