diff --git a/studio/backend/models/inference.py b/studio/backend/models/inference.py index 59fd7209e2..69f5e9a991 100644 --- a/studio/backend/models/inference.py +++ b/studio/backend/models/inference.py @@ -897,16 +897,13 @@ class ChatCompletionRequest(BaseModel): dynatemp_range: Optional[float] = Field( None, ge = 0.0, - description = ( - "llama.cpp `dynatemp_range`. 0.0 disables. Local only." - ), + description = ("llama.cpp `dynatemp_range`. 0.0 disables. Local only."), ) dynatemp_exponent: Optional[float] = Field( None, ge = 0.0, description = ( - "llama.cpp `dynatemp_exponent`. Local only; pairs with " - "dynatemp_range." + "llama.cpp `dynatemp_exponent`. Local only; pairs with " "dynatemp_range." ), ) mirostat: Optional[int] = Field(