@@ -52,7 +52,6 @@ def create(
5252 name : str ,
5353 base_model : Optional [str ] | Omit = omit ,
5454 description : Optional [str ] | Omit = omit ,
55- memory_stores : Iterable [agent_create_params .MemoryStore ] | Omit = omit ,
5655 secrets : Iterable [agent_create_params .Secret ] | Omit = omit ,
5756 skills : SequenceNotStr [str ] | Omit = omit ,
5857 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -74,10 +73,6 @@ def create(
7473
7574 description: Optional description of the agent
7675
77- memory_stores: Optional list of memory stores to attach to the agent. Each store must be
78- team-owned by the same team as the agent. Duplicate UIDs within a single request
79- are rejected.
80-
8176 secrets: Optional list of secrets associated with the agent. Duplicate names within a
8277 single request are rejected. Each entry is unioned into the run-time secret
8378 scope when the agent executes.
@@ -104,7 +99,6 @@ def create(
10499 "name" : name ,
105100 "base_model" : base_model ,
106101 "description" : description ,
107- "memory_stores" : memory_stores ,
108102 "secrets" : secrets ,
109103 "skills" : skills ,
110104 },
@@ -122,7 +116,6 @@ def update(
122116 * ,
123117 base_model : Optional [str ] | Omit = omit ,
124118 description : Optional [str ] | Omit = omit ,
125- memory_stores : Optional [Iterable [agent_update_params .MemoryStore ]] | Omit = omit ,
126119 name : str | Omit = omit ,
127120 secrets : Optional [Iterable [agent_update_params .Secret ]] | Omit = omit ,
128121 skills : Optional [SequenceNotStr [str ]] | Omit = omit ,
@@ -144,9 +137,6 @@ def update(
144137 description: Replacement description. Omit or pass `null` to leave unchanged, or use an empty
145138 value to clear.
146139
147- memory_stores: Replacement list of memory stores. Omit to leave unchanged, pass an empty array
148- to clear, or pass a non-empty array to replace.
149-
150140 name: The new name for the agent
151141
152142 secrets: Replacement list of secrets. Omit to leave unchanged, pass an empty array to
@@ -171,7 +161,6 @@ def update(
171161 {
172162 "base_model" : base_model ,
173163 "description" : description ,
174- "memory_stores" : memory_stores ,
175164 "name" : name ,
176165 "secrets" : secrets ,
177166 "skills" : skills ,
@@ -307,7 +296,6 @@ async def create(
307296 name : str ,
308297 base_model : Optional [str ] | Omit = omit ,
309298 description : Optional [str ] | Omit = omit ,
310- memory_stores : Iterable [agent_create_params .MemoryStore ] | Omit = omit ,
311299 secrets : Iterable [agent_create_params .Secret ] | Omit = omit ,
312300 skills : SequenceNotStr [str ] | Omit = omit ,
313301 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -329,10 +317,6 @@ async def create(
329317
330318 description: Optional description of the agent
331319
332- memory_stores: Optional list of memory stores to attach to the agent. Each store must be
333- team-owned by the same team as the agent. Duplicate UIDs within a single request
334- are rejected.
335-
336320 secrets: Optional list of secrets associated with the agent. Duplicate names within a
337321 single request are rejected. Each entry is unioned into the run-time secret
338322 scope when the agent executes.
@@ -359,7 +343,6 @@ async def create(
359343 "name" : name ,
360344 "base_model" : base_model ,
361345 "description" : description ,
362- "memory_stores" : memory_stores ,
363346 "secrets" : secrets ,
364347 "skills" : skills ,
365348 },
@@ -377,7 +360,6 @@ async def update(
377360 * ,
378361 base_model : Optional [str ] | Omit = omit ,
379362 description : Optional [str ] | Omit = omit ,
380- memory_stores : Optional [Iterable [agent_update_params .MemoryStore ]] | Omit = omit ,
381363 name : str | Omit = omit ,
382364 secrets : Optional [Iterable [agent_update_params .Secret ]] | Omit = omit ,
383365 skills : Optional [SequenceNotStr [str ]] | Omit = omit ,
@@ -399,9 +381,6 @@ async def update(
399381 description: Replacement description. Omit or pass `null` to leave unchanged, or use an empty
400382 value to clear.
401383
402- memory_stores: Replacement list of memory stores. Omit to leave unchanged, pass an empty array
403- to clear, or pass a non-empty array to replace.
404-
405384 name: The new name for the agent
406385
407386 secrets: Replacement list of secrets. Omit to leave unchanged, pass an empty array to
@@ -426,7 +405,6 @@ async def update(
426405 {
427406 "base_model" : base_model ,
428407 "description" : description ,
429- "memory_stores" : memory_stores ,
430408 "name" : name ,
431409 "secrets" : secrets ,
432410 "skills" : skills ,
0 commit comments