mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-30 23:02:50 +00:00
fix: use dynamic thinking_budget (-1) instead of hardcoded 8192 cap
This commit is contained in:
@@ -160,7 +160,7 @@ class GeminiCompletion(BaseLLM):
|
|||||||
and float(version_match.group(1)) >= 2.5
|
and float(version_match.group(1)) >= 2.5
|
||||||
):
|
):
|
||||||
self.thinking_config = types.ThinkingConfig(
|
self.thinking_config = types.ThinkingConfig(
|
||||||
include_thoughts=True, thinking_budget=8192
|
include_thoughts=True, thinking_budget=-1
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|||||||
Reference in New Issue
Block a user