File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -267,14 +267,18 @@ class PhishBlockThreshold(_common.CaseInSensitiveEnum):
267267
268268
269269class ThinkingLevel(_common.CaseInSensitiveEnum):
270- """The level of thoughts tokens that the model should generate."""
270+ """The number of thoughts tokens that the model should generate."""
271271
272272 THINKING_LEVEL_UNSPECIFIED = 'THINKING_LEVEL_UNSPECIFIED'
273- """Default value ."""
273+ """Unspecified thinking level ."""
274274 LOW = 'LOW'
275275 """Low thinking level."""
276+ MEDIUM = 'MEDIUM'
277+ """Medium thinking level."""
276278 HIGH = 'HIGH'
277279 """High thinking level."""
280+ MINIMAL = 'MINIMAL'
281+ """MINIMAL thinking level."""
278282
279283
280284class HarmCategory(_common.CaseInSensitiveEnum):
@@ -4611,7 +4615,7 @@ class ThinkingConfig(_common.BaseModel):
46114615 )
46124616 thinking_level: Optional[ThinkingLevel] = Field(
46134617 default=None,
4614- description="""Optional. The level of thoughts tokens that the model should generate.""",
4618+ description="""Optional. The number of thoughts tokens that the model should generate.""",
46154619 )
46164620
46174621
@@ -4627,7 +4631,7 @@ class ThinkingConfigDict(TypedDict, total=False):
46274631 """
46284632
46294633 thinking_level: Optional[ThinkingLevel]
4630- """Optional. The level of thoughts tokens that the model should generate."""
4634+ """Optional. The number of thoughts tokens that the model should generate."""
46314635
46324636
46334637ThinkingConfigOrDict = Union[ThinkingConfig, ThinkingConfigDict]
You can’t perform that action at this time.
0 commit comments