@@ -44,7 +44,7 @@ public abstract class ThinkingConfig extends JsonSerializable {
4444 @ JsonProperty ("thinkingBudget" )
4545 public abstract Optional <Integer > thinkingBudget ();
4646
47- /** Optional. The level of thoughts tokens that the model should generate. */
47+ /** Optional. The number of thoughts tokens that the model should generate. */
4848 @ JsonProperty ("thinkingLevel" )
4949 public abstract Optional <ThinkingLevel > thinkingLevel ();
5050
@@ -107,7 +107,7 @@ public Builder clearThinkingBudget() {
107107 /**
108108 * Setter for thinkingLevel.
109109 *
110- * <p>thinkingLevel: Optional. The level of thoughts tokens that the model should generate.
110+ * <p>thinkingLevel: Optional. The number of thoughts tokens that the model should generate.
111111 */
112112 @ JsonProperty ("thinkingLevel" )
113113 public abstract Builder thinkingLevel (ThinkingLevel thinkingLevel );
@@ -125,7 +125,7 @@ public Builder clearThinkingLevel() {
125125 /**
126126 * Setter for thinkingLevel given a known enum.
127127 *
128- * <p>thinkingLevel: Optional. The level of thoughts tokens that the model should generate.
128+ * <p>thinkingLevel: Optional. The number of thoughts tokens that the model should generate.
129129 */
130130 @ CanIgnoreReturnValue
131131 public Builder thinkingLevel (ThinkingLevel .Known knownType ) {
@@ -135,7 +135,7 @@ public Builder thinkingLevel(ThinkingLevel.Known knownType) {
135135 /**
136136 * Setter for thinkingLevel given a string.
137137 *
138- * <p>thinkingLevel: Optional. The level of thoughts tokens that the model should generate.
138+ * <p>thinkingLevel: Optional. The number of thoughts tokens that the model should generate.
139139 */
140140 @ CanIgnoreReturnValue
141141 public Builder thinkingLevel (String thinkingLevel ) {
0 commit comments