diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c63567..6f3e852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ --- +## [v0.38.5] — 2026-04-06 + +### Fixed +- **Custom endpoint URL construction** (#138, #160): `base_url` ending in `/v1` was incorrectly stripped before appending `/models`, producing `http://host/models` instead of `http://host/v1/models`. Fixed to append directly. +- **`custom_providers` config entries now appear in dropdown** (#138, #160): Models defined under `config.yaml` `custom_providers` (e.g. Ollama aliases, Azure model overrides) are now always included in the dropdown, even when the `/v1/models` endpoint is unreachable. +- **Custom endpoint API key reads profile `.env`** (#138, #160): Custom endpoint auth now checks `~/.hermes/.env` keys in addition to `os.environ`. + +--- + ## [v0.38.4] — 2026-04-06 ### Fixed diff --git a/static/index.html b/static/index.html index 260e0a3..d224b7b 100644 --- a/static/index.html +++ b/static/index.html @@ -14,7 +14,7 @@