Fix Ollama keep_alive error for numeric values like -1#625
Open
zestysoft wants to merge 1 commit intovalentinfrlch:mainfrom
Open
Fix Ollama keep_alive error for numeric values like -1#625zestysoft wants to merge 1 commit intovalentinfrlch:mainfrom
zestysoft wants to merge 1 commit intovalentinfrlch:mainfrom
Conversation
When keep_alive is set to "-1" (forever) or "0" (unload immediately), the value is stored as a string from the config flow. Ollama's Go backend fails to parse these with: "time: missing unit in duration". Ollama accepts -1 and 0 as integers, so convert pure numeric strings to int before sending to the API. Fixes the error: Provider Ollama failed: time: missing unit in duration "-1" Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Author
|
fwiw, this was tested in my live environment. |
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.
Summary
keep_aliveis set to-1(forever) or0(unload immediately), the config flow stores them as strings ("-1","0")time: missing unit in duration "-1"_normalize_keep_alive()to convert pure numeric strings to integers before sending to the API, while leaving duration strings like"5m"unchangedProblem
🤖 Generated with Claude Code