-
Notifications
You must be signed in to change notification settings - Fork 424
Open
Labels
api: vertex-aiIssues related to the googleapis/python-aiplatform API.Issues related to the googleapis/python-aiplatform API.
Description
Environment details
- OS type and version: macOS (Darwin)
- Python version:
3.9.6 - pip version:
latest google-cloud-aiplatformversion:1.133.0
Steps to reproduce
- Define a ReasoningEngine using
vertexai.preview.reasoning_enginesorvertexai.reasoning_engines. - Attempt to deploy it with ADK-specific metadata (labels, framework) required for Vertex AI Console features (traces, dashboards).
- Call
ReasoningEngine.create(..., labels={"framework": "adk"}, agent_framework="google-adk"). - Failure: The create method raises a
TypeErrorbecause these arguments are not supported, or (if omitted) the agent deploys but relies on GAPIC patching to be visible in the Console.
Code example
from vertexai.preview import reasoning_engines
# Currently impossible via SDK:
reasoning_engines.ReasoningEngine.create(
my_agent,
requirements=["google-cloud-aiplatform[adk]"],
# 👇 These arguments are missing from the SDK signature
agent_framework="google-adk",
labels={"goog-vertex-reasoning-engine-framework": "adk"},
env_vars=[{"name": "OTEL_TRACES_EXPORTER", "value": "otlp"}]
)Metadata
Metadata
Assignees
Labels
api: vertex-aiIssues related to the googleapis/python-aiplatform API.Issues related to the googleapis/python-aiplatform API.