Skip to content

Commit 2bec80c

Browse files
committed
#3233 add: qwen-2.5-32b and deepseek-r1-distill-qwen-32b models for Groq
Signed-off-by: Patrizio Bekerle <[email protected]>
1 parent ec14ef3 commit 2bec80c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## 25.2.4
44
- There now is a setting to hide the icons in the main menu and command bar in the *Interface settings*
55
(for [#3230](https://github.com/pbek/QOwnNotes/pull/3230), thank you, @andrei-a-papou)
6+
- The AI models `qwen-2.5-32b` and `deepseek-r1-distill-qwen-32b` for Groq have
7+
been added (for [#3233](https://github.com/pbek/QOwnNotes/pull/3233), thank you, @Weej1)
68

79
## 25.2.3
810
- The GDScript support in the note edit code block syntax highlighter was improved

Diff for: src/services/openaiservice.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ void OpenAiService::initializeBackends() {
7878
_backendModels.clear();
7979
_backendModels[QStringLiteral("openai")] =
8080
QStringList{"gpt-4o", "gpt-4o-mini", "gpt-4-turbo", "gpt-3.5-turbo", "gpt-4"};
81-
_backendModels[QStringLiteral("groq")] = QStringList{"deepseek-r1-distill-llama-70b",
81+
_backendModels[QStringLiteral("groq")] = QStringList{"qwen-2.5-32b",
82+
"deepseek-r1-distill-qwen-32b",
83+
"deepseek-r1-distill-llama-70b",
8284
"llama-3.1-8b-instant",
8385
"llama-3.2-11b-vision-preview",
8486
"llama-3.2-1b-preview",

0 commit comments

Comments
 (0)