oz-agent-sdk 1.4.0-alpha.2 → 1.4.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/package.json +13 -3
- package/resources/agent/agent.d.mts +4 -3
- package/resources/agent/agent.d.mts.map +1 -1
- package/resources/agent/agent.d.ts +4 -3
- package/resources/agent/agent.d.ts.map +1 -1
- package/resources/agent/agent.js +2 -2
- package/resources/agent/agent.js.map +1 -1
- package/resources/agent/agent.mjs +2 -2
- package/resources/agent/agent.mjs.map +1 -1
- package/resources/agent/agent_.d.mts +231 -61
- package/resources/agent/agent_.d.mts.map +1 -1
- package/resources/agent/agent_.d.ts +231 -61
- package/resources/agent/agent_.d.ts.map +1 -1
- package/resources/agent/agent_.js.map +1 -1
- package/resources/agent/agent_.mjs.map +1 -1
- package/resources/agent/runs.d.mts +16 -3
- package/resources/agent/runs.d.mts.map +1 -1
- package/resources/agent/runs.d.ts +16 -3
- package/resources/agent/runs.d.ts.map +1 -1
- package/resources/agent/runs.js +0 -1
- package/resources/agent/runs.js.map +1 -1
- package/resources/agent/runs.mjs +0 -1
- package/resources/agent/runs.mjs.map +1 -1
- package/src/resources/agent/agent.ts +4 -3
- package/src/resources/agent/agent_.ts +245 -61
- package/src/resources/agent/runs.ts +19 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { APIResource } from "../../core/resource.mjs";
|
|
2
|
+
import * as AgentAPI from "./agent.mjs";
|
|
2
3
|
import { APIPromise } from "../../core/api-promise.mjs";
|
|
3
4
|
import { RequestOptions } from "../../internal/request-options.mjs";
|
|
4
5
|
/**
|
|
@@ -70,10 +71,9 @@ export interface AgentResponse {
|
|
|
70
71
|
*/
|
|
71
72
|
created_at: string;
|
|
72
73
|
/**
|
|
73
|
-
* Memory
|
|
74
|
-
* attached.
|
|
74
|
+
* Memory settings for an agent.
|
|
75
75
|
*/
|
|
76
|
-
|
|
76
|
+
memory: AgentResponse.Memory;
|
|
77
77
|
/**
|
|
78
78
|
* Name of the agent
|
|
79
79
|
*/
|
|
@@ -91,6 +91,10 @@ export interface AgentResponse {
|
|
|
91
91
|
* Unique identifier for the agent
|
|
92
92
|
*/
|
|
93
93
|
uid: string;
|
|
94
|
+
/**
|
|
95
|
+
* When the agent was last updated (RFC3339)
|
|
96
|
+
*/
|
|
97
|
+
updated_at: string;
|
|
94
98
|
/**
|
|
95
99
|
* Default harness for runs executed by this agent. The precedence order for
|
|
96
100
|
* harness resolution is:
|
|
@@ -131,6 +135,13 @@ export interface AgentResponse {
|
|
|
131
135
|
* Inference provider settings used for LLM calls.
|
|
132
136
|
*/
|
|
133
137
|
inference_providers?: AgentResponse.InferenceProviders;
|
|
138
|
+
/**
|
|
139
|
+
* MCP server configurations attached to this agent by default. Run-level MCP
|
|
140
|
+
* config takes precedence over this agent-level default.
|
|
141
|
+
*/
|
|
142
|
+
mcp_servers?: {
|
|
143
|
+
[key: string]: AgentAPI.McpServerConfig;
|
|
144
|
+
};
|
|
134
145
|
/**
|
|
135
146
|
* Optional base prompt for this agent
|
|
136
147
|
*/
|
|
@@ -138,21 +149,80 @@ export interface AgentResponse {
|
|
|
138
149
|
}
|
|
139
150
|
export declare namespace AgentResponse {
|
|
140
151
|
/**
|
|
141
|
-
*
|
|
152
|
+
* Memory settings for an agent.
|
|
142
153
|
*/
|
|
143
|
-
interface
|
|
154
|
+
interface Memory {
|
|
144
155
|
/**
|
|
145
|
-
*
|
|
156
|
+
* Team memory stores attached to the agent.
|
|
146
157
|
*/
|
|
147
|
-
|
|
158
|
+
attached_stores: Array<Memory.AttachedStore>;
|
|
148
159
|
/**
|
|
149
|
-
*
|
|
160
|
+
* Auto-memory state for an agent.
|
|
150
161
|
*/
|
|
151
|
-
|
|
162
|
+
auto_memory: Memory.AutoMemory;
|
|
163
|
+
}
|
|
164
|
+
namespace Memory {
|
|
152
165
|
/**
|
|
153
|
-
*
|
|
166
|
+
* Reference to a memory store to attach to an agent.
|
|
154
167
|
*/
|
|
155
|
-
|
|
168
|
+
interface AttachedStore {
|
|
169
|
+
/**
|
|
170
|
+
* Access level for the store.
|
|
171
|
+
*/
|
|
172
|
+
access: 'read_write' | 'read_only';
|
|
173
|
+
/**
|
|
174
|
+
* Instructions for how the agent should use this memory store. Must not be empty.
|
|
175
|
+
*/
|
|
176
|
+
instructions: string;
|
|
177
|
+
/**
|
|
178
|
+
* UID of the memory store.
|
|
179
|
+
*/
|
|
180
|
+
uid: string;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* Auto-memory state for an agent.
|
|
184
|
+
*/
|
|
185
|
+
interface AutoMemory {
|
|
186
|
+
/**
|
|
187
|
+
* Whether this agent has an agent-owned memory store.
|
|
188
|
+
*/
|
|
189
|
+
enabled: boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Memory store attached to an agent.
|
|
192
|
+
*/
|
|
193
|
+
store?: AutoMemory.Store;
|
|
194
|
+
}
|
|
195
|
+
namespace AutoMemory {
|
|
196
|
+
/**
|
|
197
|
+
* Memory store attached to an agent.
|
|
198
|
+
*/
|
|
199
|
+
interface Store {
|
|
200
|
+
/**
|
|
201
|
+
* Access level for the store.
|
|
202
|
+
*/
|
|
203
|
+
access: 'read_write' | 'read_only';
|
|
204
|
+
/**
|
|
205
|
+
* Instructions for how the agent should use this memory store.
|
|
206
|
+
*/
|
|
207
|
+
instructions: string;
|
|
208
|
+
/**
|
|
209
|
+
* Public owner type.
|
|
210
|
+
*/
|
|
211
|
+
owner_type: 'user' | 'service_account' | 'team';
|
|
212
|
+
/**
|
|
213
|
+
* Public UID of the user, service account, or team that owns the memory store.
|
|
214
|
+
*/
|
|
215
|
+
owner_uid: string;
|
|
216
|
+
/**
|
|
217
|
+
* UID of the memory store.
|
|
218
|
+
*/
|
|
219
|
+
uid: string;
|
|
220
|
+
/**
|
|
221
|
+
* Optional description for the memory store.
|
|
222
|
+
*/
|
|
223
|
+
description?: string;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
156
226
|
}
|
|
157
227
|
/**
|
|
158
228
|
* Reference to a managed secret by name.
|
|
@@ -242,11 +312,16 @@ export interface CreateAgentRequest {
|
|
|
242
312
|
*/
|
|
243
313
|
inference_providers?: CreateAgentRequest.InferenceProviders;
|
|
244
314
|
/**
|
|
245
|
-
* Optional
|
|
246
|
-
*
|
|
247
|
-
|
|
315
|
+
* Optional map of MCP server configurations by name to attach to runs executed by
|
|
316
|
+
* this agent. Run-level MCP config takes precedence over this agent-level default.
|
|
317
|
+
*/
|
|
318
|
+
mcp_servers?: {
|
|
319
|
+
[key: string]: AgentAPI.McpServerConfig;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Memory settings for creating an agent.
|
|
248
323
|
*/
|
|
249
|
-
|
|
324
|
+
memory?: CreateAgentRequest.Memory;
|
|
250
325
|
/**
|
|
251
326
|
* Optional base prompt for this agent
|
|
252
327
|
*/
|
|
@@ -314,21 +389,47 @@ export declare namespace CreateAgentRequest {
|
|
|
314
389
|
}
|
|
315
390
|
}
|
|
316
391
|
/**
|
|
317
|
-
*
|
|
392
|
+
* Memory settings for creating an agent.
|
|
318
393
|
*/
|
|
319
|
-
interface
|
|
394
|
+
interface Memory {
|
|
320
395
|
/**
|
|
321
|
-
*
|
|
396
|
+
* Existing team memory stores to attach to the agent. Duplicate UIDs within a
|
|
397
|
+
* single request are rejected.
|
|
322
398
|
*/
|
|
323
|
-
|
|
399
|
+
attached_stores?: Array<Memory.AttachedStore>;
|
|
324
400
|
/**
|
|
325
|
-
*
|
|
401
|
+
* Auto-memory settings for creating an agent.
|
|
326
402
|
*/
|
|
327
|
-
|
|
403
|
+
auto_memory?: Memory.AutoMemory;
|
|
404
|
+
}
|
|
405
|
+
namespace Memory {
|
|
328
406
|
/**
|
|
329
|
-
*
|
|
407
|
+
* Reference to a memory store to attach to an agent.
|
|
330
408
|
*/
|
|
331
|
-
|
|
409
|
+
interface AttachedStore {
|
|
410
|
+
/**
|
|
411
|
+
* Access level for the store.
|
|
412
|
+
*/
|
|
413
|
+
access: 'read_write' | 'read_only';
|
|
414
|
+
/**
|
|
415
|
+
* Instructions for how the agent should use this memory store. Must not be empty.
|
|
416
|
+
*/
|
|
417
|
+
instructions: string;
|
|
418
|
+
/**
|
|
419
|
+
* UID of the memory store.
|
|
420
|
+
*/
|
|
421
|
+
uid: string;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* Auto-memory settings for creating an agent.
|
|
425
|
+
*/
|
|
426
|
+
interface AutoMemory {
|
|
427
|
+
/**
|
|
428
|
+
* Whether to create and attach a default service-account-owned memory store for
|
|
429
|
+
* this agent. Defaults to true when omitted.
|
|
430
|
+
*/
|
|
431
|
+
enabled?: boolean;
|
|
432
|
+
}
|
|
332
433
|
}
|
|
333
434
|
/**
|
|
334
435
|
* Reference to a managed secret by name.
|
|
@@ -381,10 +482,17 @@ export interface UpdateAgentRequest {
|
|
|
381
482
|
*/
|
|
382
483
|
inference_providers?: UpdateAgentRequest.InferenceProviders | null;
|
|
383
484
|
/**
|
|
384
|
-
* Replacement
|
|
385
|
-
* to clear, or pass a non-empty
|
|
485
|
+
* Replacement map of MCP server configurations by name. Omit to leave unchanged,
|
|
486
|
+
* pass an empty object to clear, or pass a non-empty object to replace. Run-level
|
|
487
|
+
* MCP config takes precedence over this agent-level default.
|
|
488
|
+
*/
|
|
489
|
+
mcp_servers?: {
|
|
490
|
+
[key: string]: AgentAPI.McpServerConfig;
|
|
491
|
+
};
|
|
492
|
+
/**
|
|
493
|
+
* Memory settings for updating an agent.
|
|
386
494
|
*/
|
|
387
|
-
|
|
495
|
+
memory?: UpdateAgentRequest.Memory | null;
|
|
388
496
|
/**
|
|
389
497
|
* The new name for the agent
|
|
390
498
|
*/
|
|
@@ -453,21 +561,33 @@ export declare namespace UpdateAgentRequest {
|
|
|
453
561
|
}
|
|
454
562
|
}
|
|
455
563
|
/**
|
|
456
|
-
*
|
|
564
|
+
* Memory settings for updating an agent.
|
|
457
565
|
*/
|
|
458
|
-
interface
|
|
459
|
-
/**
|
|
460
|
-
* Access level for the store.
|
|
461
|
-
*/
|
|
462
|
-
access: 'read_write' | 'read_only';
|
|
566
|
+
interface Memory {
|
|
463
567
|
/**
|
|
464
|
-
*
|
|
568
|
+
* Replacement list of attached team memory stores. Omit to leave unchanged, pass
|
|
569
|
+
* an empty array to clear, or pass a non-empty array to replace.
|
|
465
570
|
*/
|
|
466
|
-
|
|
571
|
+
attached_stores?: Array<Memory.AttachedStore> | null;
|
|
572
|
+
}
|
|
573
|
+
namespace Memory {
|
|
467
574
|
/**
|
|
468
|
-
*
|
|
575
|
+
* Reference to a memory store to attach to an agent.
|
|
469
576
|
*/
|
|
470
|
-
|
|
577
|
+
interface AttachedStore {
|
|
578
|
+
/**
|
|
579
|
+
* Access level for the store.
|
|
580
|
+
*/
|
|
581
|
+
access: 'read_write' | 'read_only';
|
|
582
|
+
/**
|
|
583
|
+
* Instructions for how the agent should use this memory store. Must not be empty.
|
|
584
|
+
*/
|
|
585
|
+
instructions: string;
|
|
586
|
+
/**
|
|
587
|
+
* UID of the memory store.
|
|
588
|
+
*/
|
|
589
|
+
uid: string;
|
|
590
|
+
}
|
|
471
591
|
}
|
|
472
592
|
/**
|
|
473
593
|
* Reference to a managed secret by name.
|
|
@@ -511,11 +631,16 @@ export interface AgentCreateParams {
|
|
|
511
631
|
*/
|
|
512
632
|
inference_providers?: AgentCreateParams.InferenceProviders;
|
|
513
633
|
/**
|
|
514
|
-
* Optional
|
|
515
|
-
*
|
|
516
|
-
|
|
634
|
+
* Optional map of MCP server configurations by name to attach to runs executed by
|
|
635
|
+
* this agent. Run-level MCP config takes precedence over this agent-level default.
|
|
636
|
+
*/
|
|
637
|
+
mcp_servers?: {
|
|
638
|
+
[key: string]: AgentAPI.McpServerConfig;
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* Memory settings for creating an agent.
|
|
517
642
|
*/
|
|
518
|
-
|
|
643
|
+
memory?: AgentCreateParams.Memory;
|
|
519
644
|
/**
|
|
520
645
|
* Optional base prompt for this agent
|
|
521
646
|
*/
|
|
@@ -583,21 +708,47 @@ export declare namespace AgentCreateParams {
|
|
|
583
708
|
}
|
|
584
709
|
}
|
|
585
710
|
/**
|
|
586
|
-
*
|
|
711
|
+
* Memory settings for creating an agent.
|
|
587
712
|
*/
|
|
588
|
-
interface
|
|
713
|
+
interface Memory {
|
|
589
714
|
/**
|
|
590
|
-
*
|
|
715
|
+
* Existing team memory stores to attach to the agent. Duplicate UIDs within a
|
|
716
|
+
* single request are rejected.
|
|
591
717
|
*/
|
|
592
|
-
|
|
718
|
+
attached_stores?: Array<Memory.AttachedStore>;
|
|
593
719
|
/**
|
|
594
|
-
*
|
|
720
|
+
* Auto-memory settings for creating an agent.
|
|
595
721
|
*/
|
|
596
|
-
|
|
722
|
+
auto_memory?: Memory.AutoMemory;
|
|
723
|
+
}
|
|
724
|
+
namespace Memory {
|
|
725
|
+
/**
|
|
726
|
+
* Reference to a memory store to attach to an agent.
|
|
727
|
+
*/
|
|
728
|
+
interface AttachedStore {
|
|
729
|
+
/**
|
|
730
|
+
* Access level for the store.
|
|
731
|
+
*/
|
|
732
|
+
access: 'read_write' | 'read_only';
|
|
733
|
+
/**
|
|
734
|
+
* Instructions for how the agent should use this memory store. Must not be empty.
|
|
735
|
+
*/
|
|
736
|
+
instructions: string;
|
|
737
|
+
/**
|
|
738
|
+
* UID of the memory store.
|
|
739
|
+
*/
|
|
740
|
+
uid: string;
|
|
741
|
+
}
|
|
597
742
|
/**
|
|
598
|
-
*
|
|
743
|
+
* Auto-memory settings for creating an agent.
|
|
599
744
|
*/
|
|
600
|
-
|
|
745
|
+
interface AutoMemory {
|
|
746
|
+
/**
|
|
747
|
+
* Whether to create and attach a default service-account-owned memory store for
|
|
748
|
+
* this agent. Defaults to true when omitted.
|
|
749
|
+
*/
|
|
750
|
+
enabled?: boolean;
|
|
751
|
+
}
|
|
601
752
|
}
|
|
602
753
|
/**
|
|
603
754
|
* Reference to a managed secret by name.
|
|
@@ -640,10 +791,17 @@ export interface AgentUpdateParams {
|
|
|
640
791
|
*/
|
|
641
792
|
inference_providers?: AgentUpdateParams.InferenceProviders | null;
|
|
642
793
|
/**
|
|
643
|
-
* Replacement
|
|
644
|
-
* to clear, or pass a non-empty
|
|
794
|
+
* Replacement map of MCP server configurations by name. Omit to leave unchanged,
|
|
795
|
+
* pass an empty object to clear, or pass a non-empty object to replace. Run-level
|
|
796
|
+
* MCP config takes precedence over this agent-level default.
|
|
645
797
|
*/
|
|
646
|
-
|
|
798
|
+
mcp_servers?: {
|
|
799
|
+
[key: string]: AgentAPI.McpServerConfig;
|
|
800
|
+
};
|
|
801
|
+
/**
|
|
802
|
+
* Memory settings for updating an agent.
|
|
803
|
+
*/
|
|
804
|
+
memory?: AgentUpdateParams.Memory | null;
|
|
647
805
|
/**
|
|
648
806
|
* The new name for the agent
|
|
649
807
|
*/
|
|
@@ -712,21 +870,33 @@ export declare namespace AgentUpdateParams {
|
|
|
712
870
|
}
|
|
713
871
|
}
|
|
714
872
|
/**
|
|
715
|
-
*
|
|
873
|
+
* Memory settings for updating an agent.
|
|
716
874
|
*/
|
|
717
|
-
interface
|
|
875
|
+
interface Memory {
|
|
718
876
|
/**
|
|
719
|
-
*
|
|
877
|
+
* Replacement list of attached team memory stores. Omit to leave unchanged, pass
|
|
878
|
+
* an empty array to clear, or pass a non-empty array to replace.
|
|
720
879
|
*/
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
*/
|
|
725
|
-
instructions: string;
|
|
880
|
+
attached_stores?: Array<Memory.AttachedStore> | null;
|
|
881
|
+
}
|
|
882
|
+
namespace Memory {
|
|
726
883
|
/**
|
|
727
|
-
*
|
|
884
|
+
* Reference to a memory store to attach to an agent.
|
|
728
885
|
*/
|
|
729
|
-
|
|
886
|
+
interface AttachedStore {
|
|
887
|
+
/**
|
|
888
|
+
* Access level for the store.
|
|
889
|
+
*/
|
|
890
|
+
access: 'read_write' | 'read_only';
|
|
891
|
+
/**
|
|
892
|
+
* Instructions for how the agent should use this memory store. Must not be empty.
|
|
893
|
+
*/
|
|
894
|
+
instructions: string;
|
|
895
|
+
/**
|
|
896
|
+
* UID of the memory store.
|
|
897
|
+
*/
|
|
898
|
+
uid: string;
|
|
899
|
+
}
|
|
730
900
|
}
|
|
731
901
|
/**
|
|
732
902
|
* Reference to a managed secret by name.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent_.d.mts","sourceRoot":"","sources":["../../src/resources/agent/agent_.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,EAAE,UAAU,EAAE,mCAA+B;AAEpD,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;GAEG;AACH,qBAAa,KAAM,SAAQ,WAAW;IACpC;;;;;;;;;;OAUG;IACH,MAAM,CAAC,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIpF;;;;;;;;;OASG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;IAIjG;;;;;;;;;OASG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,2BAA2B,CAAC;IAIvE;;;;;;;OAOG;IACH,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAO/D;;;;;;;;;OASG;IACH,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,aAAa,CAAC;CAGtE;AAED,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB
|
|
1
|
+
{"version":3,"file":"agent_.d.mts","sourceRoot":"","sources":["../../src/resources/agent/agent_.ts"],"names":[],"mappings":"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"}
|