style(cerebras): match repository formatter

This commit is contained in:
Ryan Loney 2026-08-20 14:02:55 -07:00
parent de8ba474cd
commit a444f10e29

View file

@ -120,10 +120,6 @@ class CerebrasConfig(OpenAIGPTConfig):
) -> dict:
supported_openai_params: Final = self.get_supported_openai_params(model=model)
optional_params.update(
{
param: value
for param, value in non_default_params.items()
if param in supported_openai_params
}
{param: value for param, value in non_default_params.items() if param in supported_openai_params}
)
return optional_params