From d8ac6f2c1a8713dadcd5b75ad65f2d6c68570d00 Mon Sep 17 00:00:00 2001 From: Joyce Er Date: Wed, 3 Sep 2025 12:23:36 -0700 Subject: [PATCH] fix: update default Cerebras model to Qwen 3 32B --- src/pipecat/services/cerebras/llm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/services/cerebras/llm.py b/src/pipecat/services/cerebras/llm.py index 5d6690d73..bdbc51896 100644 --- a/src/pipecat/services/cerebras/llm.py +++ b/src/pipecat/services/cerebras/llm.py @@ -26,7 +26,7 @@ class CerebrasLLMService(OpenAILLMService): *, api_key: str, base_url: str = "https://api.cerebras.ai/v1", - model: str = "llama-3.3-70b", + model: str = "qwen-3-32b", **kwargs, ): """Initialize the Cerebras LLM service. @@ -34,7 +34,7 @@ class CerebrasLLMService(OpenAILLMService): Args: api_key: The API key for accessing Cerebras's API. base_url: The base URL for Cerebras API. Defaults to "https://api.cerebras.ai/v1". - model: The model identifier to use. Defaults to "llama-3.3-70b". + model: The model identifier to use. Defaults to "qwen-3-32b". **kwargs: Additional keyword arguments passed to OpenAILLMService. """ super().__init__(api_key=api_key, base_url=base_url, model=model, **kwargs)