Skip to content

Commit 44ec325

Browse files
committed
correct thinking budget option range
1 parent 6219268 commit 44ec325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gemini_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def INPUT_TYPES(cls) -> InputTypeDict:
7676
"max_output_tokens": (IO.INT, {"default": 8192, "min": 1, "max": 8192, "step": 1}),
7777
"include_images": (IO.BOOLEAN, {"default": True}),
7878
"bypass_mode": (["None", "system_instruction", "prompt", "both"], {"default": "None"}),
79-
"thinking_budget": (IO.INT, {"default": 0, "min": 0, "max": 24576, "step": 1, "tooltip": "0 disables thinking mode, 1 will activate it as default thinking budget and anything above sets specific budget"}),
79+
"thinking_budget": (IO.INT, {"default": 0, "min": -1, "max": 24576, "step": 1, "tooltip": "0 disables thinking mode, -1 will activate it as default dynamic thinking and anything above 0 sets specific budget"}),
8080
},
8181
"optional": {
8282
"input_image": (IO.IMAGE,),

0 commit comments

Comments
 (0)