Update changelogs for recent fixes

This commit is contained in:
Mario Zechner 2025-12-10 21:23:08 +01:00
parent 7323af1f69
commit c91afd76f1
2 changed files with 9 additions and 1 deletions

View file

@ -4,10 +4,14 @@
### Added
- **Mistral provider**: Added support for Mistral AI models via the OpenAI-compatible API. Includes automatic handling of Mistral-specific requirements (tool call ID format, message ordering constraints). Set `MISTRAL_API_KEY` environment variable to use.
- **Mistral provider**: Added support for Mistral AI models via the OpenAI-compatible API. Includes automatic handling of Mistral-specific requirements (tool call ID format). Set `MISTRAL_API_KEY` environment variable to use.
### Fixed
- Fixed Mistral 400 errors after aborted assistant messages by skipping empty assistant messages (no content, no tool calls)
- Removed synthetic assistant bridge message after tool results for Mistral (no longer required as of Dec 2024)
- Fixed bug where `ANTHROPIC_API_KEY` environment variable was deleted globally after first OAuth token usage, causing subsequent prompts to fail
## [0.17.0] - 2025-12-09

View file

@ -6,6 +6,10 @@
- **Mistral provider**: Added support for Mistral AI models. Set `MISTRAL_API_KEY` environment variable to use.
### Fixed
- Fixed print mode (`-p`) not exiting after output when custom themes are present (theme watcher now properly stops in print mode)
## [0.18.0] - 2025-12-10
### Added