Skip to content

Commit 268b3f3

Browse files
vertex-sdk-botcopybara-github
authored andcommitted
chore: make default value of enable_tracing in ADK preview template to match the GA one
This will allow for default-on telemetry with preview template if enable_tracing was not specified. See https://github.com/googleapis/python-aiplatform/blob/9a46e67a8c341673b14bece88bc635b455314711/vertexai/agent_engines/templates/adk.py#L481. PiperOrigin-RevId: 827514536
1 parent 59e3004 commit 268b3f3

File tree

1 file changed

+1
-1
lines changed
  • vertexai/preview/reasoning_engines/templates

1 file changed

+1
-1
lines changed

vertexai/preview/reasoning_engines/templates/adk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def __init__(
491491
*,
492492
agent: "BaseAgent",
493493
plugins: Optional[List["BasePlugin"]] = None,
494-
enable_tracing: bool = False,
494+
enable_tracing: Optional[bool] = None,
495495
session_service_builder: Optional[Callable[..., "BaseSessionService"]] = None,
496496
artifact_service_builder: Optional[Callable[..., "BaseArtifactService"]] = None,
497497
memory_service_builder: Optional[Callable[..., "BaseMemoryService"]] = None,

0 commit comments

Comments
 (0)