Skip to content

Commit f24125d

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 9a46e67 commit f24125d

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
@@ -478,7 +478,7 @@ def __init__(
478478
*,
479479
agent: "BaseAgent",
480480
plugins: Optional[List["BasePlugin"]] = None,
481-
enable_tracing: bool = False,
481+
enable_tracing: bool = None,
482482
session_service_builder: Optional[Callable[..., "BaseSessionService"]] = None,
483483
artifact_service_builder: Optional[Callable[..., "BaseArtifactService"]] = None,
484484
memory_service_builder: Optional[Callable[..., "BaseMemoryService"]] = None,

0 commit comments

Comments
 (0)