@aws-sdk/client-bedrock 3.929.0 → 3.930.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 +0 -338
- package/dist-es/models/models_0.js +0 -252
- package/dist-es/models/models_1.js +0 -86
- package/dist-types/models/models_0.d.ts +84 -21
- package/dist-types/models/models_1.d.ts +28 -7
- package/dist-types/ts3.4/models/models_0.d.ts +0 -54
- package/dist-types/ts3.4/models/models_1.d.ts +0 -16
- package/package.json +34 -34
|
@@ -304,10 +304,6 @@ export declare namespace InferenceProfileModelSource {
|
|
|
304
304
|
copyFrom: (value: string) => T;
|
|
305
305
|
_: (name: string, value: any) => T;
|
|
306
306
|
}
|
|
307
|
-
const visit: <T>(
|
|
308
|
-
value: InferenceProfileModelSource,
|
|
309
|
-
visitor: Visitor<T>
|
|
310
|
-
) => T;
|
|
311
307
|
}
|
|
312
308
|
export interface CreateInferenceProfileRequest {
|
|
313
309
|
inferenceProfileName: string | undefined;
|
|
@@ -592,10 +588,6 @@ export declare namespace ModelInvocationJobInputDataConfig {
|
|
|
592
588
|
s3InputDataConfig: (value: ModelInvocationJobS3InputDataConfig) => T;
|
|
593
589
|
_: (name: string, value: any) => T;
|
|
594
590
|
}
|
|
595
|
-
const visit: <T>(
|
|
596
|
-
value: ModelInvocationJobInputDataConfig,
|
|
597
|
-
visitor: Visitor<T>
|
|
598
|
-
) => T;
|
|
599
591
|
}
|
|
600
592
|
export interface ModelInvocationJobS3OutputDataConfig {
|
|
601
593
|
s3Uri: string | undefined;
|
|
@@ -618,10 +610,6 @@ export declare namespace ModelInvocationJobOutputDataConfig {
|
|
|
618
610
|
s3OutputDataConfig: (value: ModelInvocationJobS3OutputDataConfig) => T;
|
|
619
611
|
_: (name: string, value: any) => T;
|
|
620
612
|
}
|
|
621
|
-
const visit: <T>(
|
|
622
|
-
value: ModelInvocationJobOutputDataConfig,
|
|
623
|
-
visitor: Visitor<T>
|
|
624
|
-
) => T;
|
|
625
613
|
}
|
|
626
614
|
export interface CreateModelInvocationJobRequest {
|
|
627
615
|
jobName: string | undefined;
|
|
@@ -1408,7 +1396,6 @@ export declare namespace RetrievalFilter {
|
|
|
1408
1396
|
orAll: (value: RetrievalFilter[]) => T;
|
|
1409
1397
|
_: (name: string, value: any) => T;
|
|
1410
1398
|
}
|
|
1411
|
-
const visit: <T>(value: RetrievalFilter, visitor: Visitor<T>) => T;
|
|
1412
1399
|
}
|
|
1413
1400
|
export interface KnowledgeBaseVectorSearchConfiguration {
|
|
1414
1401
|
numberOfResults?: number | undefined;
|
|
@@ -1467,7 +1454,6 @@ export declare namespace KnowledgeBaseConfig {
|
|
|
1467
1454
|
retrieveAndGenerateConfig: (value: RetrieveAndGenerateConfiguration) => T;
|
|
1468
1455
|
_: (name: string, value: any) => T;
|
|
1469
1456
|
}
|
|
1470
|
-
const visit: <T>(value: KnowledgeBaseConfig, visitor: Visitor<T>) => T;
|
|
1471
1457
|
}
|
|
1472
1458
|
export type RAGConfig =
|
|
1473
1459
|
| RAGConfig.KnowledgeBaseConfigMember
|
|
@@ -1496,7 +1482,6 @@ export declare namespace RAGConfig {
|
|
|
1496
1482
|
) => T;
|
|
1497
1483
|
_: (name: string, value: any) => T;
|
|
1498
1484
|
}
|
|
1499
|
-
const visit: <T>(value: RAGConfig, visitor: Visitor<T>) => T;
|
|
1500
1485
|
}
|
|
1501
1486
|
export type EvaluationInferenceConfig =
|
|
1502
1487
|
| EvaluationInferenceConfig.ModelsMember
|
|
@@ -1523,7 +1508,6 @@ export declare namespace EvaluationInferenceConfig {
|
|
|
1523
1508
|
ragConfigs: (value: RAGConfig[]) => T;
|
|
1524
1509
|
_: (name: string, value: any) => T;
|
|
1525
1510
|
}
|
|
1526
|
-
const visit: <T>(value: EvaluationInferenceConfig, visitor: Visitor<T>) => T;
|
|
1527
1511
|
}
|
|
1528
1512
|
export interface CreateEvaluationJobRequest {
|
|
1529
1513
|
jobName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.930.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock",
|
|
@@ -20,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.9.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/token-providers": "3.930.0",
|
|
31
|
+
"@aws-sdk/types": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
36
|
+
"@smithy/core": "^3.18.2",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
38
|
+
"@smithy/hash-node": "^4.2.5",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
48
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
49
|
+
"@smithy/types": "^4.9.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.5",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
58
|
+
"@smithy/util-retry": "^4.2.5",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|