What's Changed
Ollama Base URL β No More /api/api Surprises π
If you've ever configured an Ollama base URL and wondered why Jazz suddenly started hitting /api/api/show like a broken GPS giving you directions to the wrong house β this one's for you. The base URL resolver now canonicalizes Ollama URLs to the /api root in one place, so whether you set http://localhost:11434, http://localhost:11434/api, or http://localhost:11434/api/ (trailing slash, we see you), they all resolve to the same clean http://localhost:11434/api. No more doubled path segments, no more mysterious 404s. llamacpp is left alone because it speaks /v1, not /api β every local server gets the respect it deserves. (#252)
Commits
6db1342243fix(llm): canonicalize ollama base URL at its single source by @lvndry