diff --git a/src/pipecat/services/together/llm.py b/src/pipecat/services/together/llm.py index 80aa91590..3711daa72 100644 --- a/src/pipecat/services/together/llm.py +++ b/src/pipecat/services/together/llm.py @@ -51,7 +51,7 @@ class TogetherLLMService(OpenAILLMService): Args: api_key: The API key for accessing Together.ai's API. base_url: The base URL for Together.ai API. Defaults to "https://api.together.xyz/v1". - model: The model identifier to use. Defaults to "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo". + model: The model identifier to use. Defaults to "openai/gpt-oss-20b". .. deprecated:: 0.0.105 Use ``settings=TogetherLLMService.Settings(model=...)`` instead. @@ -61,7 +61,7 @@ class TogetherLLMService(OpenAILLMService): **kwargs: Additional keyword arguments passed to OpenAILLMService. """ # 1. Initialize default_settings with hardcoded defaults - default_settings = self.Settings(model="meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo") + default_settings = self.Settings(model="openai/gpt-oss-20b") # 2. Apply direct init arg overrides (deprecated) if model is not None: