@aws-sdk/client-bedrock-agentcore 3.1067.0 → 3.1068.0
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/dist-cjs/index.js +36 -0
- package/dist-cjs/schemas/schemas_0.js +226 -54
- package/dist-es/models/enums.js +35 -0
- package/dist-es/schemas/schemas_0.js +216 -45
- package/dist-types/commands/CreateABTestCommand.d.ts +3 -0
- package/dist-types/commands/GetBatchEvaluationCommand.d.ts +96 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +9 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +6 -0
- package/dist-types/commands/ListEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +1 -1
- package/dist-types/commands/StartBatchEvaluationCommand.d.ts +25 -0
- package/dist-types/commands/StartRecommendationCommand.d.ts +16 -0
- package/dist-types/models/enums.d.ts +43 -0
- package/dist-types/models/models_0.d.ts +470 -436
- package/dist-types/models/models_1.d.ts +433 -2
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMemoryRecordsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +37 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -133
- package/dist-types/ts3.4/models/models_1.d.ts +138 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +1 -1
|
@@ -1,6 +1,437 @@
|
|
|
1
1
|
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import type { BlockchainChainId, CryptoWalletNetwork, Currency, DescriptorType, EventFilterCondition, InstrumentBalanceToken, PaymentInstrumentStatus, PaymentInstrumentType, PaymentSessionStatus, PaymentStatus, PaymentType, RegistryRecordStatus } from "./enums";
|
|
3
|
-
import type { A2aDescriptor, AgentSkillsDescriptor,
|
|
2
|
+
import type { BlockchainChainId, CryptoWalletNetwork, Currency, DescriptorType, EventFilterCondition, ExtractionJobStatus, InstrumentBalanceToken, MemoryRecordOperatorType, OperatorType, PaymentInstrumentStatus, PaymentInstrumentType, PaymentSessionStatus, PaymentStatus, PaymentType, RegistryRecordStatus } from "./enums";
|
|
3
|
+
import type { A2aDescriptor, AgentSkillsDescriptor, BranchFilter, Event, LeftExpression, MemoryContent, MemoryRecordMetadataValue, RightExpression } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Filter expression for retrieving events based on metadata associated with an event.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface EventMetadataFilterExpression {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Left operand of the event metadata filter expression.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
left: LeftExpression | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>Operator applied to the event metadata filter expression.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
operator: OperatorType | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>Right operand of the event metadata filter expression.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
right?: RightExpression | undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* <p>Contains filter criteria for listing events.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface FilterInput {
|
|
30
|
+
/**
|
|
31
|
+
* <p>The branch filter criteria to apply when listing events.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
branch?: BranchFilter | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>Event metadata filter criteria to apply when retrieving events.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
eventMetadata?: EventMetadataFilterExpression[] | undefined;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export interface ListEventsInput {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The identifier of the AgentCore Memory resource for which to list events.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
memoryId: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The identifier of the session for which to list events.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
sessionId: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The identifier of the actor for which to list events.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
actorId: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>Specifies whether to include event payloads in the response. Set to true to include payloads, or false to exclude them.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
includePayloads?: boolean | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>Filter criteria to apply when listing events.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
filter?: FilterInput | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
maxResults?: number | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
nextToken?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export interface ListEventsOutput {
|
|
85
|
+
/**
|
|
86
|
+
* <p>The list of events that match the specified criteria.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
events: Event[] | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The token to use in a subsequent request to get the next set of results. This value is null when there are no more results to return.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
nextToken?: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>Filters for querying memory extraction jobs based on various criteria.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export interface ExtractionJobFilterInput {
|
|
101
|
+
/**
|
|
102
|
+
* <p>The memory strategy identifier to filter extraction jobs by. If specified, only extraction jobs with this strategy ID are returned.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
strategyId?: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The unique identifier of the session. If specified, only extraction jobs with this session ID are returned.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
sessionId?: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The identifier of the actor. If specified, only extraction jobs with this actor ID are returned.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
actorId?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The status of the extraction job. If specified, only extraction jobs with this status are returned.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
status?: ExtractionJobStatus | undefined;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export interface ListMemoryExtractionJobsInput {
|
|
126
|
+
/**
|
|
127
|
+
* <p>The unique identifier of the memory to list extraction jobs for.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
memoryId: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
maxResults?: number | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* <p>Filter criteria to apply when listing extraction jobs.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
filter?: ExtractionJobFilterInput | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
nextToken?: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* <p>Metadata information associated with this message.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export interface MessageMetadata {
|
|
152
|
+
/**
|
|
153
|
+
* <p>The identifier of the event associated with this message.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
eventId: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The position of this message within that event’s ordered list of messages.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
messageIndex: number | undefined;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* <p>The list of messages that compose this extraction job.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export type ExtractionJobMessages = ExtractionJobMessages.MessagesListMember | ExtractionJobMessages.$UnknownMember;
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export declare namespace ExtractionJobMessages {
|
|
172
|
+
/**
|
|
173
|
+
* <p>The list of messages that compose this extraction job.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
interface MessagesListMember {
|
|
177
|
+
messagesList: MessageMetadata[];
|
|
178
|
+
$unknown?: never;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
interface $UnknownMember {
|
|
184
|
+
messagesList?: never;
|
|
185
|
+
$unknown: [string, any];
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* @deprecated unused in schema-serde mode.
|
|
189
|
+
*
|
|
190
|
+
*/
|
|
191
|
+
interface Visitor<T> {
|
|
192
|
+
messagesList: (value: MessageMetadata[]) => T;
|
|
193
|
+
_: (name: string, value: any) => T;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* <p>Metadata information associated with this extraction job.</p>
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export interface ExtractionJobMetadata {
|
|
201
|
+
/**
|
|
202
|
+
* <p>The unique identifier for the extraction job.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
jobID: string | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The messages associated with the extraction job.</p>
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
messages: ExtractionJobMessages | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* <p>The current status of the extraction job.</p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
status?: ExtractionJobStatus | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p>The cause of failure, if the job did not complete successfully.</p>
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
failureReason?: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>The identifier of the memory strategy for this extraction job.</p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
strategyId?: string | undefined;
|
|
226
|
+
/**
|
|
227
|
+
* <p>The identifier of the session for this extraction job.</p>
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
sessionId?: string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p>The identifier of the actor for this extraction job.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
actorId?: string | undefined;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
export interface ListMemoryExtractionJobsOutput {
|
|
241
|
+
/**
|
|
242
|
+
* <p>List of extraction job metadata matching the specified criteria.</p>
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
jobs: ExtractionJobMetadata[] | undefined;
|
|
246
|
+
/**
|
|
247
|
+
* <p>Token to retrieve the next page of results, if available.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
nextToken?: string | undefined;
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* <p>The left-hand side of a memory record metadata filter expression.</p>
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export type MemoryRecordLeftExpression = MemoryRecordLeftExpression.MetadataKeyMember | MemoryRecordLeftExpression.$UnknownMember;
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
export declare namespace MemoryRecordLeftExpression {
|
|
261
|
+
/**
|
|
262
|
+
* <p>The metadata key to filter on.</p>
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
interface MetadataKeyMember {
|
|
266
|
+
metadataKey: string;
|
|
267
|
+
$unknown?: never;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
interface $UnknownMember {
|
|
273
|
+
metadataKey?: never;
|
|
274
|
+
$unknown: [string, any];
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* @deprecated unused in schema-serde mode.
|
|
278
|
+
*
|
|
279
|
+
*/
|
|
280
|
+
interface Visitor<T> {
|
|
281
|
+
metadataKey: (value: string) => T;
|
|
282
|
+
_: (name: string, value: any) => T;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* <p>The right-hand side of a memory record metadata filter expression.</p>
|
|
287
|
+
* @public
|
|
288
|
+
*/
|
|
289
|
+
export type MemoryRecordRightExpression = MemoryRecordRightExpression.MetadataValueMember | MemoryRecordRightExpression.$UnknownMember;
|
|
290
|
+
/**
|
|
291
|
+
* @public
|
|
292
|
+
*/
|
|
293
|
+
export declare namespace MemoryRecordRightExpression {
|
|
294
|
+
/**
|
|
295
|
+
* <p>The metadata value to compare against.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
interface MetadataValueMember {
|
|
299
|
+
metadataValue: MemoryRecordMetadataValue;
|
|
300
|
+
$unknown?: never;
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
interface $UnknownMember {
|
|
306
|
+
metadataValue?: never;
|
|
307
|
+
$unknown: [string, any];
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* @deprecated unused in schema-serde mode.
|
|
311
|
+
*
|
|
312
|
+
*/
|
|
313
|
+
interface Visitor<T> {
|
|
314
|
+
metadataValue: (value: MemoryRecordMetadataValue) => T;
|
|
315
|
+
_: (name: string, value: any) => T;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* <p>Filters to apply to metadata associated with a memory. Specify the metadata key and value in the <code>left</code> and <code>right</code> fields and use the <code>operator</code> field to define the relationship to match.</p>
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
export interface MemoryMetadataFilterExpression {
|
|
323
|
+
/**
|
|
324
|
+
* <p>The metadata key to evaluate.</p>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
left: MemoryRecordLeftExpression | undefined;
|
|
328
|
+
/**
|
|
329
|
+
* <p>The relationship between the metadata key and value to match when applying the metadata filter.</p>
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
operator: MemoryRecordOperatorType | undefined;
|
|
333
|
+
/**
|
|
334
|
+
* <p>The value to compare against. Required for all operators except EXISTS and NOT_EXISTS.</p>
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
right?: MemoryRecordRightExpression | undefined;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
export interface ListMemoryRecordsInput {
|
|
343
|
+
/**
|
|
344
|
+
* <p>The identifier of the AgentCore Memory resource for which to list memory records.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
memoryId: string | undefined;
|
|
348
|
+
/**
|
|
349
|
+
* <p>The namespace prefix to filter memory records by. Returns all memory records in namespaces that start with the provided prefix. Either <code>namespace</code> or <code>namespacePath</code> is required.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
namespace?: string | undefined;
|
|
353
|
+
/**
|
|
354
|
+
* <p>Use namespacePath for hierarchical retrievals. Return all memory records where namespace falls under the same parent hierarchy. Either <code>namespace</code> or <code>namespacePath</code> is required.</p>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
namespacePath?: string | undefined;
|
|
358
|
+
/**
|
|
359
|
+
* <p>The memory strategy identifier to filter memory records by. If specified, only memory records with this strategy ID are returned.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
memoryStrategyId?: string | undefined;
|
|
363
|
+
/**
|
|
364
|
+
* <p>The maximum number of results to return in a single call. The default value is 20.</p>
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
maxResults?: number | undefined;
|
|
368
|
+
/**
|
|
369
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p>
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
nextToken?: string | undefined;
|
|
373
|
+
/**
|
|
374
|
+
* <p>A list of metadata filter expressions to scope the returned memory records.</p>
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
metadataFilters?: MemoryMetadataFilterExpression[] | undefined;
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* <p>Contains summary information about a memory record.</p>
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
export interface MemoryRecordSummary {
|
|
384
|
+
/**
|
|
385
|
+
* <p>The unique identifier of the memory record.</p>
|
|
386
|
+
* @public
|
|
387
|
+
*/
|
|
388
|
+
memoryRecordId: string | undefined;
|
|
389
|
+
/**
|
|
390
|
+
* <p>The content of the memory record.</p>
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
content: MemoryContent | undefined;
|
|
394
|
+
/**
|
|
395
|
+
* <p>The identifier of the memory strategy associated with this record.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
memoryStrategyId: string | undefined;
|
|
399
|
+
/**
|
|
400
|
+
* <p>The namespaces associated with this memory record.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
namespaces: string[] | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* <p>The timestamp when the memory record was created.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
createdAt: Date | undefined;
|
|
409
|
+
/**
|
|
410
|
+
* <p>The relevance score of the memory record when returned as part of a search result. Higher values indicate greater relevance to the search query.</p>
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
score?: number | undefined;
|
|
414
|
+
/**
|
|
415
|
+
* <p>A map of metadata key-value pairs associated with a memory record.</p>
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
418
|
+
metadata?: Record<string, MemoryRecordMetadataValue> | undefined;
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
*/
|
|
423
|
+
export interface ListMemoryRecordsOutput {
|
|
424
|
+
/**
|
|
425
|
+
* <p>The list of memory record summaries that match the specified criteria.</p>
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
memoryRecordSummaries: MemoryRecordSummary[] | undefined;
|
|
429
|
+
/**
|
|
430
|
+
* <p>The token to use in a subsequent request to get the next set of results. This value is null when there are no more results to return.</p>
|
|
431
|
+
* @public
|
|
432
|
+
*/
|
|
433
|
+
nextToken?: string | undefined;
|
|
434
|
+
}
|
|
4
435
|
/**
|
|
5
436
|
* <p>Contains filter criteria for listing sessions.</p>
|
|
6
437
|
* @public
|
|
@@ -25,6 +25,7 @@ export declare var A2aDescriptor$: StaticStructureSchema;
|
|
|
25
25
|
export declare var ABTestResults$: StaticStructureSchema;
|
|
26
26
|
export declare var ABTestSummary$: StaticStructureSchema;
|
|
27
27
|
export declare var ActorSummary$: StaticStructureSchema;
|
|
28
|
+
export declare var AffectedSession$: StaticStructureSchema;
|
|
28
29
|
export declare var AgentCardDefinition$: StaticStructureSchema;
|
|
29
30
|
export declare var AgentSkillsDescriptor$: StaticStructureSchema;
|
|
30
31
|
export declare var Amount$: StaticStructureSchema;
|
|
@@ -37,6 +38,7 @@ export declare var BatchCreateMemoryRecordsOutput$: StaticStructureSchema;
|
|
|
37
38
|
export declare var BatchDeleteMemoryRecordsInput$: StaticStructureSchema;
|
|
38
39
|
export declare var BatchDeleteMemoryRecordsOutput$: StaticStructureSchema;
|
|
39
40
|
export declare var BatchEvaluationSummary$: StaticStructureSchema;
|
|
41
|
+
export declare var BatchEvaluationTraceConfig$: StaticStructureSchema;
|
|
40
42
|
export declare var BatchUpdateMemoryRecordsInput$: StaticStructureSchema;
|
|
41
43
|
export declare var BatchUpdateMemoryRecordsOutput$: StaticStructureSchema;
|
|
42
44
|
export declare var Branch$: StaticStructureSchema;
|
|
@@ -107,10 +109,17 @@ export declare var EvaluatorStatistics$: StaticStructureSchema;
|
|
|
107
109
|
export declare var EvaluatorSummary$: StaticStructureSchema;
|
|
108
110
|
export declare var Event$: StaticStructureSchema;
|
|
109
111
|
export declare var EventMetadataFilterExpression$: StaticStructureSchema;
|
|
112
|
+
export declare var ExecutionSummaryAffectedSession$: StaticStructureSchema;
|
|
113
|
+
export declare var ExecutionSummaryCluster$: StaticStructureSchema;
|
|
114
|
+
export declare var ExecutionSummaryClusteringResultContent$: StaticStructureSchema;
|
|
110
115
|
export declare var ExternalProxy$: StaticStructureSchema;
|
|
111
116
|
export declare var ExtractionJob$: StaticStructureSchema;
|
|
112
117
|
export declare var ExtractionJobFilterInput$: StaticStructureSchema;
|
|
113
118
|
export declare var ExtractionJobMetadata$: StaticStructureSchema;
|
|
119
|
+
export declare var FailureAnalysisResultContent$: StaticStructureSchema;
|
|
120
|
+
export declare var FailureCategoryCluster$: StaticStructureSchema;
|
|
121
|
+
export declare var FailureSpanDetail$: StaticStructureSchema;
|
|
122
|
+
export declare var FailureSubCategoryCluster$: StaticStructureSchema;
|
|
114
123
|
export declare var FilterInput$: StaticStructureSchema;
|
|
115
124
|
export declare var GatewayFilter$: StaticStructureSchema;
|
|
116
125
|
export declare var GetABTestRequest$: StaticStructureSchema;
|
|
@@ -178,6 +187,8 @@ export declare var HarnessToolUseBlockDelta$: StaticStructureSchema;
|
|
|
178
187
|
export declare var HarnessToolUseBlockStart$: StaticStructureSchema;
|
|
179
188
|
export declare var InlineGroundTruth$: StaticStructureSchema;
|
|
180
189
|
export declare var InputContentBlock$: StaticStructureSchema;
|
|
190
|
+
export declare var Insight$: StaticStructureSchema;
|
|
191
|
+
export declare var InsightsFailureSignal$: StaticStructureSchema;
|
|
181
192
|
export declare var InvokeAgentRuntimeCommandRequest$: StaticStructureSchema;
|
|
182
193
|
export declare var InvokeAgentRuntimeCommandRequestBody$: StaticStructureSchema;
|
|
183
194
|
export declare var InvokeAgentRuntimeCommandResponse$: StaticStructureSchema;
|
|
@@ -242,6 +253,7 @@ export declare var MouseScrollArguments$: StaticStructureSchema;
|
|
|
242
253
|
export declare var MouseScrollResult$: StaticStructureSchema;
|
|
243
254
|
export declare var OAuth2Authentication$: StaticStructureSchema;
|
|
244
255
|
export declare var OAuthCredentialProvider$: StaticStructureSchema;
|
|
256
|
+
export declare var OnlineEvaluationConfigSource$: StaticStructureSchema;
|
|
245
257
|
export declare var PaymentInstrument$: StaticStructureSchema;
|
|
246
258
|
export declare var PaymentInstrumentSummary$: StaticStructureSchema;
|
|
247
259
|
export declare var PaymentSession$: StaticStructureSchema;
|
|
@@ -260,6 +272,7 @@ export declare var ResourceContent$: StaticStructureSchema;
|
|
|
260
272
|
export declare var ResponseChunk$: StaticStructureSchema;
|
|
261
273
|
export declare var RetrieveMemoryRecordsInput$: StaticStructureSchema;
|
|
262
274
|
export declare var RetrieveMemoryRecordsOutput$: StaticStructureSchema;
|
|
275
|
+
export declare var RootCauseCluster$: StaticStructureSchema;
|
|
263
276
|
export declare var S3Location$: StaticStructureSchema;
|
|
264
277
|
export declare var SaveBrowserSessionProfileRequest$: StaticStructureSchema;
|
|
265
278
|
export declare var SaveBrowserSessionProfileResponse$: StaticStructureSchema;
|
|
@@ -317,6 +330,9 @@ export declare var UpdateABTestRequest$: StaticStructureSchema;
|
|
|
317
330
|
export declare var UpdateABTestResponse$: StaticStructureSchema;
|
|
318
331
|
export declare var UpdateBrowserStreamRequest$: StaticStructureSchema;
|
|
319
332
|
export declare var UpdateBrowserStreamResponse$: StaticStructureSchema;
|
|
333
|
+
export declare var UserIntentAffectedSession$: StaticStructureSchema;
|
|
334
|
+
export declare var UserIntentCluster$: StaticStructureSchema;
|
|
335
|
+
export declare var UserIntentClusteringResultContent$: StaticStructureSchema;
|
|
320
336
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
321
337
|
export declare var Variant$: StaticStructureSchema;
|
|
322
338
|
export declare var VariantConfiguration$: StaticStructureSchema;
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreClient";
|
|
8
|
-
import { ListEventsInput, ListEventsOutput } from "../models/
|
|
8
|
+
import { ListEventsInput, ListEventsOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListEventsCommandInput extends ListEventsInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListMemoryExtractionJobsInput,
|
|
10
10
|
ListMemoryExtractionJobsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListMemoryExtractionJobsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListMemoryRecordsInput,
|
|
10
10
|
ListMemoryRecordsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListMemoryRecordsCommandInput extends ListMemoryRecordsInput {}
|
|
@@ -17,6 +17,43 @@ export declare const ABTestStatus: {
|
|
|
17
17
|
readonly UPDATING: "UPDATING";
|
|
18
18
|
};
|
|
19
19
|
export type ABTestStatus = (typeof ABTestStatus)[keyof typeof ABTestStatus];
|
|
20
|
+
export declare const InsightsFailureCategory: {
|
|
21
|
+
readonly CODING_DEPENDENCY_ISSUES: "coding-use-case-specific-failure-types-category-dependency-issues";
|
|
22
|
+
readonly CODING_EDGE_CASE_OVERSIGHTS: "coding-use-case-specific-failure-types-category-edge-case-oversights";
|
|
23
|
+
readonly CONFIGURATION_MISMATCH_TOOL_DEFINITION: "configuration-mismatch-category-tool-definition";
|
|
24
|
+
readonly CONTEXT_HANDLING_FAILURES: "context-handling-error-category-context-handling-failures";
|
|
25
|
+
readonly EXECUTION_ERROR_AUTHENTICATION: "execution-error-category-authentication";
|
|
26
|
+
readonly EXECUTION_ERROR_ENVIRONMENT: "execution-error-category-environment";
|
|
27
|
+
readonly EXECUTION_ERROR_FORMATTING: "execution-error-category-formatting";
|
|
28
|
+
readonly EXECUTION_ERROR_RATE_LIMITING: "execution-error-category-rate-limiting";
|
|
29
|
+
readonly EXECUTION_ERROR_RESOURCE_EXHAUSTION: "execution-error-category-resource-exhaustion";
|
|
30
|
+
readonly EXECUTION_ERROR_RESOURCE_NOT_FOUND: "execution-error-category-resource-not-found";
|
|
31
|
+
readonly EXECUTION_ERROR_SERVICE_ERRORS: "execution-error-category-service-errors";
|
|
32
|
+
readonly EXECUTION_ERROR_TIMEOUT: "execution-error-category-timeout";
|
|
33
|
+
readonly EXECUTION_ERROR_TOOL_SCHEMA: "execution-error-category-tool-schema";
|
|
34
|
+
readonly HALLUCINATION_CAPABILITIES: "hallucination-category-hall-capabilities";
|
|
35
|
+
readonly HALLUCINATION_FABRICATE_TOOL_OUTPUTS: "hallucination-category-fabricate-tool-outputs";
|
|
36
|
+
readonly HALLUCINATION_HISTORY: "hallucination-category-hall-history";
|
|
37
|
+
readonly HALLUCINATION_MISUNDERSTAND: "hallucination-category-hall-misunderstand";
|
|
38
|
+
readonly HALLUCINATION_PARAMS: "hallucination-category-hall-params";
|
|
39
|
+
readonly HALLUCINATION_USAGE: "hallucination-category-hall-usage";
|
|
40
|
+
readonly INCORRECT_ACTIONS_CLARIFICATION: "incorrect-actions-category-clarification";
|
|
41
|
+
readonly INCORRECT_ACTIONS_INAPPROPRIATE_INFO_REQUEST: "incorrect-actions-category-inappropriate-info-request";
|
|
42
|
+
readonly INCORRECT_ACTIONS_POOR_INFORMATION_RETRIEVAL: "incorrect-actions-category-poor-information-retrieval";
|
|
43
|
+
readonly INCORRECT_ACTIONS_TOOL_SELECTION: "incorrect-actions-category-tool-selection";
|
|
44
|
+
readonly LLM_OUTPUT_NONSENSICAL: "llm-output-category-nonsensical";
|
|
45
|
+
readonly ORCHESTRATION_GOAL_DEVIATION: "orchestration-related-errors-category-goal-deviation";
|
|
46
|
+
readonly ORCHESTRATION_PREMATURE_TERMINATION: "orchestration-related-errors-category-premature-termination";
|
|
47
|
+
readonly ORCHESTRATION_REASONING_MISMATCH: "orchestration-related-errors-category-reasoning-mismatch";
|
|
48
|
+
readonly ORCHESTRATION_UNAWARE_TERMINATION: "orchestration-related-errors-category-unaware-termination";
|
|
49
|
+
readonly REPETITIVE_BEHAVIOR_INFO: "repetitive-behavior-category-repetition-info";
|
|
50
|
+
readonly REPETITIVE_BEHAVIOR_STEP: "repetitive-behavior-category-step-repetition";
|
|
51
|
+
readonly REPETITIVE_BEHAVIOR_TOOL: "repetitive-behavior-category-repetition-tool";
|
|
52
|
+
readonly TASK_INSTRUCTION_NON_COMPLIANCE: "task-instruction-category-non-compliance";
|
|
53
|
+
readonly TASK_INSTRUCTION_PROBLEM_ID: "task-instruction-category-problem-id";
|
|
54
|
+
};
|
|
55
|
+
export type InsightsFailureCategory =
|
|
56
|
+
(typeof InsightsFailureCategory)[keyof typeof InsightsFailureCategory];
|
|
20
57
|
export declare const ValidationExceptionReason: {
|
|
21
58
|
readonly CANNOT_PARSE: "CannotParse";
|
|
22
59
|
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|