Skip to content

Commit f348417

Browse files
authored
Merge pull request #4 from ozskywalker/fix-replace-deprecated-model-qwen-qwq-32b
Changed default model choice of qwen-qwq-32-b to qwen/qwen3-32b Thank you @ozskywalker
2 parents 6fdd484 + 2ac9908 commit f348417

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

utils/groq_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
def get_groq_response(
1717
prompt: str,
18-
model: str = "qwen-qwq-32b",
18+
model: str = "qwen/qwen3-32b", # replaced qwen-qwq-32b with qwen/qwen3-32b, per deprecation notice -> https://console.groq.com/docs/deprecations#july-14-2025-qwen-qwq-32b
1919
role: str = "user",
2020
max_retries: int = 3,
2121
retry_delay: int = 2,
@@ -26,7 +26,7 @@ def get_groq_response(
2626
2727
Args:
2828
prompt (str): The prompt to send to the model.
29-
model (str): The model to use (defaults to "qwen-qwq-32b").
29+
model (str): The model to use (defaults to "qwen/qwen3-32b").
3030
role (str): The role of the message (e.g., "user", "system", "assistant").
3131
max_retries (int): Maximum number of retries for failed requests.
3232
retry_delay (int): Delay (in seconds) between retries.

0 commit comments

Comments
 (0)