@@ -94,12 +94,6 @@ export interface AgentResponse {
9494 */
9595 created_at : string ;
9696
97- /**
98- * Memory stores attached to this agent. Always present; empty when no stores are
99- * attached.
100- */
101- memory_stores : Array < AgentResponse . MemoryStore > ;
102-
10397 /**
10498 * Name of the agent
10599 */
@@ -138,26 +132,6 @@ export interface AgentResponse {
138132}
139133
140134export namespace AgentResponse {
141- /**
142- * Reference to a memory store to attach to an agent.
143- */
144- export interface MemoryStore {
145- /**
146- * Access level for the store.
147- */
148- access : 'read_write' | 'read_only' ;
149-
150- /**
151- * Instructions for how the agent should use this memory store. Must not be empty.
152- */
153- instructions : string ;
154-
155- /**
156- * UID of the memory store.
157- */
158- uid : string ;
159- }
160-
161135 /**
162136 * Reference to a managed secret by name.
163137 */
@@ -185,13 +159,6 @@ export interface CreateAgentRequest {
185159 */
186160 description ?: string | null ;
187161
188- /**
189- * Optional list of memory stores to attach to the agent. Each store must be
190- * team-owned by the same team as the agent. Duplicate UIDs within a single request
191- * are rejected.
192- */
193- memory_stores ?: Array < CreateAgentRequest . MemoryStore > ;
194-
195162 /**
196163 * Optional list of secrets associated with the agent. Duplicate names within a
197164 * single request are rejected. Each entry is unioned into the run-time secret
@@ -210,26 +177,6 @@ export interface CreateAgentRequest {
210177}
211178
212179export namespace CreateAgentRequest {
213- /**
214- * Reference to a memory store to attach to an agent.
215- */
216- export interface MemoryStore {
217- /**
218- * Access level for the store.
219- */
220- access : 'read_write' | 'read_only' ;
221-
222- /**
223- * Instructions for how the agent should use this memory store. Must not be empty.
224- */
225- instructions : string ;
226-
227- /**
228- * UID of the memory store.
229- */
230- uid : string ;
231- }
232-
233180 /**
234181 * Reference to a managed secret by name.
235182 */
@@ -265,12 +212,6 @@ export interface UpdateAgentRequest {
265212 */
266213 description ?: string | null ;
267214
268- /**
269- * Replacement list of memory stores. Omit to leave unchanged, pass an empty array
270- * to clear, or pass a non-empty array to replace.
271- */
272- memory_stores ?: Array < UpdateAgentRequest . MemoryStore > | null ;
273-
274215 /**
275216 * The new name for the agent
276217 */
@@ -290,26 +231,6 @@ export interface UpdateAgentRequest {
290231}
291232
292233export namespace UpdateAgentRequest {
293- /**
294- * Reference to a memory store to attach to an agent.
295- */
296- export interface MemoryStore {
297- /**
298- * Access level for the store.
299- */
300- access : 'read_write' | 'read_only' ;
301-
302- /**
303- * Instructions for how the agent should use this memory store. Must not be empty.
304- */
305- instructions : string ;
306-
307- /**
308- * UID of the memory store.
309- */
310- uid : string ;
311- }
312-
313234 /**
314235 * Reference to a managed secret by name.
315236 */
@@ -337,13 +258,6 @@ export interface AgentCreateParams {
337258 */
338259 description ?: string | null ;
339260
340- /**
341- * Optional list of memory stores to attach to the agent. Each store must be
342- * team-owned by the same team as the agent. Duplicate UIDs within a single request
343- * are rejected.
344- */
345- memory_stores ?: Array < AgentCreateParams . MemoryStore > ;
346-
347261 /**
348262 * Optional list of secrets associated with the agent. Duplicate names within a
349263 * single request are rejected. Each entry is unioned into the run-time secret
@@ -362,26 +276,6 @@ export interface AgentCreateParams {
362276}
363277
364278export namespace AgentCreateParams {
365- /**
366- * Reference to a memory store to attach to an agent.
367- */
368- export interface MemoryStore {
369- /**
370- * Access level for the store.
371- */
372- access : 'read_write' | 'read_only' ;
373-
374- /**
375- * Instructions for how the agent should use this memory store. Must not be empty.
376- */
377- instructions : string ;
378-
379- /**
380- * UID of the memory store.
381- */
382- uid : string ;
383- }
384-
385279 /**
386280 * Reference to a managed secret by name.
387281 */
@@ -406,12 +300,6 @@ export interface AgentUpdateParams {
406300 */
407301 description ?: string | null ;
408302
409- /**
410- * Replacement list of memory stores. Omit to leave unchanged, pass an empty array
411- * to clear, or pass a non-empty array to replace.
412- */
413- memory_stores ?: Array < AgentUpdateParams . MemoryStore > | null ;
414-
415303 /**
416304 * The new name for the agent
417305 */
@@ -431,26 +319,6 @@ export interface AgentUpdateParams {
431319}
432320
433321export namespace AgentUpdateParams {
434- /**
435- * Reference to a memory store to attach to an agent.
436- */
437- export interface MemoryStore {
438- /**
439- * Access level for the store.
440- */
441- access : 'read_write' | 'read_only' ;
442-
443- /**
444- * Instructions for how the agent should use this memory store. Must not be empty.
445- */
446- instructions : string ;
447-
448- /**
449- * UID of the memory store.
450- */
451- uid : string ;
452- }
453-
454322 /**
455323 * Reference to a managed secret by name.
456324 */
0 commit comments