No public description

PiperOrigin-RevId: 749409258
This commit is contained in:
Wei Sun 2025-04-19 16:34:12 -07:00 committed by Copybara-Service
parent 32dc145ace
commit 2af777af6d

View File

@ -56,6 +56,7 @@ class BuiltInPlanner(BasePlanner):
llm_request: The LLM request to apply the thinking config to.
"""
if self.thinking_config:
llm_request.config = llm_request.config or types.GenerateContentConfig()
llm_request.config.thinking_config = self.thinking_config
@override