feat: Add Claude extended thinking (#254)

* feat: Add Claude extended thinking
* fix: Set 1.0 temperature for thinking mode
This commit is contained in:
Petr Mironychev
2025-11-12 18:33:15 +01:00
committed by GitHub
parent 89797639cf
commit 161d77ac04
23 changed files with 745 additions and 40 deletions

View File

@ -28,6 +28,9 @@ struct Message
{
QString role;
QString content;
QString signature;
bool isThinking = false;
bool isRedacted = false;
// clang-format off
bool operator==(const Message&) const = default;