You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: reasoning_validator.go
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -28,21 +28,22 @@ var (
28
28
ErrReasoningModelLimitationsOther=errors.New("this model has beta-limitations, temperature, top_p and n are fixed at 1, while presence_penalty and frequency_penalty are fixed at 0") //nolint:lll
29
29
)
30
30
31
-
// ReasoningValidator handles validation for o-series model requests.
31
+
// ReasoningValidator handles validation for reasoning model requests.
32
32
typeReasoningValidatorstruct{}
33
33
34
-
// NewReasoningValidator creates a new validator for o-series models.
34
+
// NewReasoningValidator creates a new validator for reasoning models.
35
35
funcNewReasoningValidator() *ReasoningValidator {
36
36
return&ReasoningValidator{}
37
37
}
38
38
39
-
// Validate performs all validation checks for o-series models.
39
+
// Validate performs all validation checks for reasoning models.
0 commit comments