Switch to GPT-OSS-120B

This commit is contained in:
Joyce Er
2025-09-03 14:00:27 -07:00
parent d8ac6f2c1a
commit a001f6f193
3 changed files with 5 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ class CerebrasLLMService(OpenAILLMService):
*,
api_key: str,
base_url: str = "https://api.cerebras.ai/v1",
model: str = "qwen-3-32b",
model: str = "gpt-oss-120b",
**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 "qwen-3-32b".
model: The model identifier to use. Defaults to "gpt-oss-120b".
**kwargs: Additional keyword arguments passed to OpenAILLMService.
"""
super().__init__(api_key=api_key, base_url=base_url, model=model, **kwargs)