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/common.py
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8122,6 +8122,10 @@ class AgentEngineMemoryConfig(_common.BaseModel):
8122
8122
default=None,
8123
8123
description="""Optional. User-provided metadata for the Memory. This information was provided when creating, updating, or generating the Memory. It was not generated by Memory Bank.""",
8124
8124
)
8125
+
memory_id: Optional[str] = Field(
8126
+
default=None,
8127
+
description="""Optional. The user defined ID to use for memory, which will become the final component of the memory resource name. If not provided, Vertex AI will generate a value for this ID. This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number.""",
8128
+
)
8125
8129
8126
8130
8127
8131
class AgentEngineMemoryConfigDict(TypedDict, total=False):
@@ -8162,6 +8166,9 @@ class AgentEngineMemoryConfigDict(TypedDict, total=False):
"""Optional. User-provided metadata for the Memory. This information was provided when creating, updating, or generating the Memory. It was not generated by Memory Bank."""
8164
8168
8169
+
memory_id: Optional[str]
8170
+
"""Optional. The user defined ID to use for memory, which will become the final component of the memory resource name. If not provided, Vertex AI will generate a value for this ID. This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number."""
@@ -9539,6 +9546,10 @@ class UpdateAgentEngineMemoryConfig(_common.BaseModel):
9539
9546
default=None,
9540
9547
description="""Optional. User-provided metadata for the Memory. This information was provided when creating, updating, or generating the Memory. It was not generated by Memory Bank.""",
9541
9548
)
9549
+
memory_id: Optional[str] = Field(
9550
+
default=None,
9551
+
description="""Optional. The user defined ID to use for memory, which will become the final component of the memory resource name. If not provided, Vertex AI will generate a value for this ID. This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number.""",
9552
+
)
9542
9553
update_mask: Optional[str] = Field(
9543
9554
default=None,
9544
9555
description="""The update mask to apply. For the `FieldMask` definition, see
@@ -9584,6 +9595,9 @@ class UpdateAgentEngineMemoryConfigDict(TypedDict, total=False):
"""Optional. User-provided metadata for the Memory. This information was provided when creating, updating, or generating the Memory. It was not generated by Memory Bank."""
9586
9597
9598
+
memory_id: Optional[str]
9599
+
"""Optional. The user defined ID to use for memory, which will become the final component of the memory resource name. If not provided, Vertex AI will generate a value for this ID. This value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The first character must be a letter, and the last character must be a letter or number."""
9600
+
9587
9601
update_mask: Optional[str]
9588
9602
"""The update mask to apply. For the `FieldMask` definition, see
0 commit comments