Models with a namespace (containing "/") couln't be used #42
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Models with a namespace (containing "/") couln't be used.
They're fail model availability check with "Model not unavailable":
Most likely cause is
/
not being encoded as a part of the value and sent as it's a part of a URL.Simple escaping using
url.QueryEscape()
isn't helping though.Still getting 404 for
mannix%2Fllama3.1-8b-lexi%3Aq8_0
(mannix/llama3.1-8b-lexi:q8_0
).Even with curl:
Could be Ollama problem? But how then OpenWebUI works with that? 🤔
After some investigation, I've created a bug report in Ollama: ollama/ollama#7528
Fixed with a workaround (local search in model list) in
a49ce5ab28
.