You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vertexai/_genai/types.py
+72Lines changed: 72 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4925,6 +4925,10 @@ class ReasoningEngineSpec(_common.BaseModel):
4925
4925
default=None,
4926
4926
description="""Optional. The service account that the Reasoning Engine artifact runs as. It should have "roles/storage.objectViewer" for reading the user project's Cloud Storage and "roles/aiplatform.user" for using Vertex extensions. If not specified, the Vertex AI Reasoning Engine Service Agent in the project will be used.""",
4927
4927
)
4928
+
agent_card: Optional[str] =Field(
4929
+
default=None,
4930
+
description="""Optional. The A2A Agent Card that describes the agent capabilities.""",
@@ -4945,6 +4949,9 @@ class ReasoningEngineSpecDict(TypedDict, total=False):
4945
4949
service_account: Optional[str]
4946
4950
"""Optional. The service account that the Reasoning Engine artifact runs as. It should have "roles/storage.objectViewer" for reading the user project's Cloud Storage and "roles/aiplatform.user" for using Vertex extensions. If not specified, the Vertex AI Reasoning Engine Service Agent in the project will be used."""
4947
4951
4952
+
agent_card: Optional[str]
4953
+
"""Optional. The A2A Agent Card that describes the agent capabilities."""
0 commit comments