@aws-sdk/client-bedrock 3.940.0 → 3.944.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/README.md +8 -0
- package/dist-cjs/index.js +93 -5
- package/dist-es/Bedrock.js +2 -0
- package/dist-es/commands/UpdateCustomModelDeploymentCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +11 -0
- package/dist-es/schemas/schemas_0.js +66 -5
- package/dist-types/Bedrock.d.ts +7 -0
- package/dist-types/BedrockClient.d.ts +3 -2
- package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +18 -1
- package/dist-types/commands/DeleteInferenceProfileCommand.d.ts +2 -1
- package/dist-types/commands/GetCustomModelCommand.d.ts +18 -1
- package/dist-types/commands/GetCustomModelDeploymentCommand.d.ts +4 -0
- package/dist-types/commands/GetInferenceProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +18 -1
- package/dist-types/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/ListCustomModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListInferenceProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +1 -1
- package/dist-types/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateCustomModelDeploymentCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +27 -0
- package/dist-types/models/models_0.d.ts +166 -164
- package/dist-types/models/models_1.d.ts +168 -1
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/Bedrock.d.ts +17 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteInferenceProfileCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetInferenceProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListInferenceProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCustomModelDeploymentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +15 -0
- package/dist-types/ts3.4/models/models_0.d.ts +57 -39
- package/dist-types/ts3.4/models/models_1.d.ts +41 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +6 -6
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
DeleteInferenceProfileResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { DeleteInferenceProfileRequest } from "../models/models_0";
|
|
9
|
+
import { DeleteInferenceProfileResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface DeleteInferenceProfileCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateCustomModelDeploymentRequest,
|
|
10
|
+
UpdateCustomModelDeploymentResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateCustomModelDeploymentCommandInput
|
|
15
|
+
extends UpdateCustomModelDeploymentRequest {}
|
|
16
|
+
export interface UpdateCustomModelDeploymentCommandOutput
|
|
17
|
+
extends UpdateCustomModelDeploymentResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateCustomModelDeploymentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateCustomModelDeploymentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateCustomModelDeploymentCommandInput,
|
|
24
|
+
UpdateCustomModelDeploymentCommandOutput,
|
|
25
|
+
BedrockClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateCustomModelDeploymentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateCustomModelDeploymentCommandInput,
|
|
33
|
+
UpdateCustomModelDeploymentCommandOutput,
|
|
34
|
+
BedrockClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateCustomModelDeploymentCommand extends UpdateCustomModelDeploymentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateCustomModelDeploymentRequest;
|
|
44
|
+
output: UpdateCustomModelDeploymentResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateCustomModelDeploymentCommandInput;
|
|
48
|
+
output: UpdateCustomModelDeploymentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -92,6 +92,7 @@ export * from "./UntagResourceCommand";
|
|
|
92
92
|
export * from "./UpdateAutomatedReasoningPolicyAnnotationsCommand";
|
|
93
93
|
export * from "./UpdateAutomatedReasoningPolicyCommand";
|
|
94
94
|
export * from "./UpdateAutomatedReasoningPolicyTestCaseCommand";
|
|
95
|
+
export * from "./UpdateCustomModelDeploymentCommand";
|
|
95
96
|
export * from "./UpdateGuardrailCommand";
|
|
96
97
|
export * from "./UpdateMarketplaceModelEndpointCommand";
|
|
97
98
|
export * from "./UpdateProvisionedModelThroughputCommand";
|
|
@@ -106,6 +106,13 @@ export declare const CustomModelDeploymentStatus: {
|
|
|
106
106
|
};
|
|
107
107
|
export type CustomModelDeploymentStatus =
|
|
108
108
|
(typeof CustomModelDeploymentStatus)[keyof typeof CustomModelDeploymentStatus];
|
|
109
|
+
export declare const CustomModelDeploymentUpdateStatus: {
|
|
110
|
+
readonly UPDATE_COMPLETED: "UpdateCompleted";
|
|
111
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
112
|
+
readonly UPDATING: "Updating";
|
|
113
|
+
};
|
|
114
|
+
export type CustomModelDeploymentUpdateStatus =
|
|
115
|
+
(typeof CustomModelDeploymentUpdateStatus)[keyof typeof CustomModelDeploymentUpdateStatus];
|
|
109
116
|
export declare const SortModelsBy: {
|
|
110
117
|
readonly CREATION_TIME: "CreationTime";
|
|
111
118
|
};
|
|
@@ -115,11 +122,19 @@ export declare const SortOrder: {
|
|
|
115
122
|
readonly DESCENDING: "Descending";
|
|
116
123
|
};
|
|
117
124
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
125
|
+
export declare const ReasoningEffort: {
|
|
126
|
+
readonly HIGH: "high";
|
|
127
|
+
readonly LOW: "low";
|
|
128
|
+
readonly MEDIUM: "medium";
|
|
129
|
+
};
|
|
130
|
+
export type ReasoningEffort =
|
|
131
|
+
(typeof ReasoningEffort)[keyof typeof ReasoningEffort];
|
|
118
132
|
export declare const CustomizationType: {
|
|
119
133
|
readonly CONTINUED_PRE_TRAINING: "CONTINUED_PRE_TRAINING";
|
|
120
134
|
readonly DISTILLATION: "DISTILLATION";
|
|
121
135
|
readonly FINE_TUNING: "FINE_TUNING";
|
|
122
136
|
readonly IMPORTED: "IMPORTED";
|
|
137
|
+
readonly REINFORCEMENT_FINE_TUNING: "REINFORCEMENT_FINE_TUNING";
|
|
123
138
|
};
|
|
124
139
|
export type CustomizationType =
|
|
125
140
|
(typeof CustomizationType)[keyof typeof CustomizationType];
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
ConfigurationOwner,
|
|
17
17
|
CustomizationType,
|
|
18
18
|
CustomModelDeploymentStatus,
|
|
19
|
+
CustomModelDeploymentUpdateStatus,
|
|
19
20
|
EvaluationJobStatus,
|
|
20
21
|
EvaluationJobType,
|
|
21
22
|
EvaluationTaskType,
|
|
@@ -36,11 +37,11 @@ import {
|
|
|
36
37
|
GuardrailTopicType,
|
|
37
38
|
GuardrailWordAction,
|
|
38
39
|
InferenceProfileStatus,
|
|
39
|
-
InferenceProfileType,
|
|
40
40
|
InputTags,
|
|
41
41
|
ModelStatus,
|
|
42
42
|
PerformanceConfigLatency,
|
|
43
43
|
QueryTransformationType,
|
|
44
|
+
ReasoningEffort,
|
|
44
45
|
RerankingMetadataSelectionMode,
|
|
45
46
|
SortJobsBy,
|
|
46
47
|
SortModelsBy,
|
|
@@ -1422,6 +1423,10 @@ export interface DeleteCustomModelDeploymentResponse {}
|
|
|
1422
1423
|
export interface GetCustomModelDeploymentRequest {
|
|
1423
1424
|
customModelDeploymentIdentifier: string | undefined;
|
|
1424
1425
|
}
|
|
1426
|
+
export interface CustomModelDeploymentUpdateDetails {
|
|
1427
|
+
modelArn: string | undefined;
|
|
1428
|
+
updateStatus: CustomModelDeploymentUpdateStatus | undefined;
|
|
1429
|
+
}
|
|
1425
1430
|
export interface GetCustomModelDeploymentResponse {
|
|
1426
1431
|
customModelDeploymentArn: string | undefined;
|
|
1427
1432
|
modelDeploymentName: string | undefined;
|
|
@@ -1429,6 +1434,7 @@ export interface GetCustomModelDeploymentResponse {
|
|
|
1429
1434
|
createdAt: Date | undefined;
|
|
1430
1435
|
status: CustomModelDeploymentStatus | undefined;
|
|
1431
1436
|
description?: string | undefined;
|
|
1437
|
+
updateDetails?: CustomModelDeploymentUpdateDetails | undefined;
|
|
1432
1438
|
failureMessage?: string | undefined;
|
|
1433
1439
|
lastUpdatedAt?: Date | undefined;
|
|
1434
1440
|
}
|
|
@@ -1456,6 +1462,13 @@ export interface ListCustomModelDeploymentsResponse {
|
|
|
1456
1462
|
nextToken?: string | undefined;
|
|
1457
1463
|
modelDeploymentSummaries?: CustomModelDeploymentSummary[] | undefined;
|
|
1458
1464
|
}
|
|
1465
|
+
export interface UpdateCustomModelDeploymentRequest {
|
|
1466
|
+
modelArn: string | undefined;
|
|
1467
|
+
customModelDeploymentIdentifier: string | undefined;
|
|
1468
|
+
}
|
|
1469
|
+
export interface UpdateCustomModelDeploymentResponse {
|
|
1470
|
+
customModelDeploymentArn: string | undefined;
|
|
1471
|
+
}
|
|
1459
1472
|
export interface S3DataSource {
|
|
1460
1473
|
s3Uri: string | undefined;
|
|
1461
1474
|
}
|
|
@@ -1501,20 +1514,63 @@ export interface TeacherModelConfig {
|
|
|
1501
1514
|
export interface DistillationConfig {
|
|
1502
1515
|
teacherModelConfig: TeacherModelConfig | undefined;
|
|
1503
1516
|
}
|
|
1517
|
+
export interface LambdaGraderConfig {
|
|
1518
|
+
lambdaArn: string | undefined;
|
|
1519
|
+
}
|
|
1520
|
+
export type GraderConfig =
|
|
1521
|
+
| GraderConfig.LambdaGraderMember
|
|
1522
|
+
| GraderConfig.$UnknownMember;
|
|
1523
|
+
export declare namespace GraderConfig {
|
|
1524
|
+
interface LambdaGraderMember {
|
|
1525
|
+
lambdaGrader: LambdaGraderConfig;
|
|
1526
|
+
$unknown?: never;
|
|
1527
|
+
}
|
|
1528
|
+
interface $UnknownMember {
|
|
1529
|
+
lambdaGrader?: never;
|
|
1530
|
+
$unknown: [string, any];
|
|
1531
|
+
}
|
|
1532
|
+
interface Visitor<T> {
|
|
1533
|
+
lambdaGrader: (value: LambdaGraderConfig) => T;
|
|
1534
|
+
_: (name: string, value: any) => T;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
export interface RFTHyperParameters {
|
|
1538
|
+
epochCount?: number | undefined;
|
|
1539
|
+
batchSize?: number | undefined;
|
|
1540
|
+
learningRate?: number | undefined;
|
|
1541
|
+
maxPromptLength?: number | undefined;
|
|
1542
|
+
trainingSamplePerPrompt?: number | undefined;
|
|
1543
|
+
inferenceMaxTokens?: number | undefined;
|
|
1544
|
+
reasoningEffort?: ReasoningEffort | undefined;
|
|
1545
|
+
evalInterval?: number | undefined;
|
|
1546
|
+
}
|
|
1547
|
+
export interface RFTConfig {
|
|
1548
|
+
graderConfig?: GraderConfig | undefined;
|
|
1549
|
+
hyperParameters?: RFTHyperParameters | undefined;
|
|
1550
|
+
}
|
|
1504
1551
|
export type CustomizationConfig =
|
|
1505
1552
|
| CustomizationConfig.DistillationConfigMember
|
|
1553
|
+
| CustomizationConfig.RftConfigMember
|
|
1506
1554
|
| CustomizationConfig.$UnknownMember;
|
|
1507
1555
|
export declare namespace CustomizationConfig {
|
|
1508
1556
|
interface DistillationConfigMember {
|
|
1509
1557
|
distillationConfig: DistillationConfig;
|
|
1558
|
+
rftConfig?: never;
|
|
1559
|
+
$unknown?: never;
|
|
1560
|
+
}
|
|
1561
|
+
interface RftConfigMember {
|
|
1562
|
+
distillationConfig?: never;
|
|
1563
|
+
rftConfig: RFTConfig;
|
|
1510
1564
|
$unknown?: never;
|
|
1511
1565
|
}
|
|
1512
1566
|
interface $UnknownMember {
|
|
1513
1567
|
distillationConfig?: never;
|
|
1568
|
+
rftConfig?: never;
|
|
1514
1569
|
$unknown: [string, any];
|
|
1515
1570
|
}
|
|
1516
1571
|
interface Visitor<T> {
|
|
1517
1572
|
distillationConfig: (value: DistillationConfig) => T;
|
|
1573
|
+
rftConfig: (value: RFTConfig) => T;
|
|
1518
1574
|
_: (name: string, value: any) => T;
|
|
1519
1575
|
}
|
|
1520
1576
|
}
|
|
@@ -2427,41 +2483,3 @@ export interface CreateInferenceProfileResponse {
|
|
|
2427
2483
|
export interface DeleteInferenceProfileRequest {
|
|
2428
2484
|
inferenceProfileIdentifier: string | undefined;
|
|
2429
2485
|
}
|
|
2430
|
-
export interface DeleteInferenceProfileResponse {}
|
|
2431
|
-
export interface GetInferenceProfileRequest {
|
|
2432
|
-
inferenceProfileIdentifier: string | undefined;
|
|
2433
|
-
}
|
|
2434
|
-
export interface InferenceProfileModel {
|
|
2435
|
-
modelArn?: string | undefined;
|
|
2436
|
-
}
|
|
2437
|
-
export interface GetInferenceProfileResponse {
|
|
2438
|
-
inferenceProfileName: string | undefined;
|
|
2439
|
-
description?: string | undefined;
|
|
2440
|
-
createdAt?: Date | undefined;
|
|
2441
|
-
updatedAt?: Date | undefined;
|
|
2442
|
-
inferenceProfileArn: string | undefined;
|
|
2443
|
-
models: InferenceProfileModel[] | undefined;
|
|
2444
|
-
inferenceProfileId: string | undefined;
|
|
2445
|
-
status: InferenceProfileStatus | undefined;
|
|
2446
|
-
type: InferenceProfileType | undefined;
|
|
2447
|
-
}
|
|
2448
|
-
export interface ListInferenceProfilesRequest {
|
|
2449
|
-
maxResults?: number | undefined;
|
|
2450
|
-
nextToken?: string | undefined;
|
|
2451
|
-
typeEquals?: InferenceProfileType | undefined;
|
|
2452
|
-
}
|
|
2453
|
-
export interface InferenceProfileSummary {
|
|
2454
|
-
inferenceProfileName: string | undefined;
|
|
2455
|
-
description?: string | undefined;
|
|
2456
|
-
createdAt?: Date | undefined;
|
|
2457
|
-
updatedAt?: Date | undefined;
|
|
2458
|
-
inferenceProfileArn: string | undefined;
|
|
2459
|
-
models: InferenceProfileModel[] | undefined;
|
|
2460
|
-
inferenceProfileId: string | undefined;
|
|
2461
|
-
status: InferenceProfileStatus | undefined;
|
|
2462
|
-
type: InferenceProfileType | undefined;
|
|
2463
|
-
}
|
|
2464
|
-
export interface ListInferenceProfilesResponse {
|
|
2465
|
-
inferenceProfileSummaries?: InferenceProfileSummary[] | undefined;
|
|
2466
|
-
nextToken?: string | undefined;
|
|
2467
|
-
}
|
|
@@ -8,6 +8,8 @@ import {
|
|
|
8
8
|
EvaluationJobType,
|
|
9
9
|
FineTuningJobStatus,
|
|
10
10
|
FoundationModelLifecycleStatus,
|
|
11
|
+
InferenceProfileStatus,
|
|
12
|
+
InferenceProfileType,
|
|
11
13
|
InferenceType,
|
|
12
14
|
JobStatusDetails,
|
|
13
15
|
ModelCopyJobStatus,
|
|
@@ -51,6 +53,44 @@ import {
|
|
|
51
53
|
VectorSearchRerankingConfiguration,
|
|
52
54
|
VpcConfig,
|
|
53
55
|
} from "./models_0";
|
|
56
|
+
export interface DeleteInferenceProfileResponse {}
|
|
57
|
+
export interface GetInferenceProfileRequest {
|
|
58
|
+
inferenceProfileIdentifier: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface InferenceProfileModel {
|
|
61
|
+
modelArn?: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface GetInferenceProfileResponse {
|
|
64
|
+
inferenceProfileName: string | undefined;
|
|
65
|
+
description?: string | undefined;
|
|
66
|
+
createdAt?: Date | undefined;
|
|
67
|
+
updatedAt?: Date | undefined;
|
|
68
|
+
inferenceProfileArn: string | undefined;
|
|
69
|
+
models: InferenceProfileModel[] | undefined;
|
|
70
|
+
inferenceProfileId: string | undefined;
|
|
71
|
+
status: InferenceProfileStatus | undefined;
|
|
72
|
+
type: InferenceProfileType | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface ListInferenceProfilesRequest {
|
|
75
|
+
maxResults?: number | undefined;
|
|
76
|
+
nextToken?: string | undefined;
|
|
77
|
+
typeEquals?: InferenceProfileType | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface InferenceProfileSummary {
|
|
80
|
+
inferenceProfileName: string | undefined;
|
|
81
|
+
description?: string | undefined;
|
|
82
|
+
createdAt?: Date | undefined;
|
|
83
|
+
updatedAt?: Date | undefined;
|
|
84
|
+
inferenceProfileArn: string | undefined;
|
|
85
|
+
models: InferenceProfileModel[] | undefined;
|
|
86
|
+
inferenceProfileId: string | undefined;
|
|
87
|
+
status: InferenceProfileStatus | undefined;
|
|
88
|
+
type: InferenceProfileType | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface ListInferenceProfilesResponse {
|
|
91
|
+
inferenceProfileSummaries?: InferenceProfileSummary[] | undefined;
|
|
92
|
+
nextToken?: string | undefined;
|
|
93
|
+
}
|
|
54
94
|
export interface DeleteModelInvocationLoggingConfigurationRequest {}
|
|
55
95
|
export interface DeleteModelInvocationLoggingConfigurationResponse {}
|
|
56
96
|
export interface GetModelInvocationLoggingConfigurationRequest {}
|
|
@@ -70,6 +110,7 @@ export interface LoggingConfig {
|
|
|
70
110
|
imageDataDeliveryEnabled?: boolean | undefined;
|
|
71
111
|
embeddingDataDeliveryEnabled?: boolean | undefined;
|
|
72
112
|
videoDataDeliveryEnabled?: boolean | undefined;
|
|
113
|
+
audioDataDeliveryEnabled?: boolean | undefined;
|
|
73
114
|
}
|
|
74
115
|
export interface GetModelInvocationLoggingConfigurationResponse {
|
|
75
116
|
loggingConfig?: LoggingConfig | undefined;
|
|
@@ -172,6 +172,7 @@ export declare var CustomMetricBedrockEvaluatorModel: StaticStructureSchema;
|
|
|
172
172
|
export declare var CustomMetricDefinition: StaticStructureSchema;
|
|
173
173
|
export declare var CustomMetricEvaluatorModelConfig: StaticStructureSchema;
|
|
174
174
|
export declare var CustomModelDeploymentSummary: StaticStructureSchema;
|
|
175
|
+
export declare var CustomModelDeploymentUpdateDetails: StaticStructureSchema;
|
|
175
176
|
export declare var CustomModelSummary: StaticStructureSchema;
|
|
176
177
|
export declare var CustomModelUnits: StaticStructureSchema;
|
|
177
178
|
export declare var DataProcessingDetails: StaticStructureSchema;
|
|
@@ -324,6 +325,7 @@ export declare var KbInferenceConfig: StaticStructureSchema;
|
|
|
324
325
|
export declare var KnowledgeBaseRetrievalConfiguration: StaticStructureSchema;
|
|
325
326
|
export declare var KnowledgeBaseRetrieveAndGenerateConfiguration: StaticStructureSchema;
|
|
326
327
|
export declare var KnowledgeBaseVectorSearchConfiguration: StaticStructureSchema;
|
|
328
|
+
export declare var LambdaGraderConfig: StaticStructureSchema;
|
|
327
329
|
export declare var LegalTerm: StaticStructureSchema;
|
|
328
330
|
export declare var ListAutomatedReasoningPoliciesRequest: StaticStructureSchema;
|
|
329
331
|
export declare var ListAutomatedReasoningPoliciesResponse: StaticStructureSchema;
|
|
@@ -402,6 +404,8 @@ export declare var ResourceInUseException: StaticErrorSchema;
|
|
|
402
404
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
403
405
|
export declare var RetrieveAndGenerateConfiguration: StaticStructureSchema;
|
|
404
406
|
export declare var RetrieveConfig: StaticStructureSchema;
|
|
407
|
+
export declare var RFTConfig: StaticStructureSchema;
|
|
408
|
+
export declare var RFTHyperParameters: StaticStructureSchema;
|
|
405
409
|
export declare var RoutingCriteria: StaticStructureSchema;
|
|
406
410
|
export declare var S3Config: StaticStructureSchema;
|
|
407
411
|
export declare var S3DataSource: StaticStructureSchema;
|
|
@@ -440,6 +444,8 @@ export declare var UpdateAutomatedReasoningPolicyRequest: StaticStructureSchema;
|
|
|
440
444
|
export declare var UpdateAutomatedReasoningPolicyResponse: StaticStructureSchema;
|
|
441
445
|
export declare var UpdateAutomatedReasoningPolicyTestCaseRequest: StaticStructureSchema;
|
|
442
446
|
export declare var UpdateAutomatedReasoningPolicyTestCaseResponse: StaticStructureSchema;
|
|
447
|
+
export declare var UpdateCustomModelDeploymentRequest: StaticStructureSchema;
|
|
448
|
+
export declare var UpdateCustomModelDeploymentResponse: StaticStructureSchema;
|
|
443
449
|
export declare var UpdateGuardrailRequest: StaticStructureSchema;
|
|
444
450
|
export declare var UpdateGuardrailResponse: StaticStructureSchema;
|
|
445
451
|
export declare var UpdateMarketplaceModelEndpointRequest: StaticStructureSchema;
|
|
@@ -580,6 +586,7 @@ export declare var EvaluationInferenceConfig: StaticStructureSchema;
|
|
|
580
586
|
export declare var EvaluationModelConfig: StaticStructureSchema;
|
|
581
587
|
export declare var EvaluationPrecomputedRagSourceConfig: StaticStructureSchema;
|
|
582
588
|
export declare var EvaluatorModelConfig: StaticStructureSchema;
|
|
589
|
+
export declare var GraderConfig: StaticStructureSchema;
|
|
583
590
|
export declare var InferenceProfileModelSource: StaticStructureSchema;
|
|
584
591
|
export declare var InvocationLogSource: StaticStructureSchema;
|
|
585
592
|
export declare var KnowledgeBaseConfig: StaticStructureSchema;
|
|
@@ -685,6 +692,7 @@ export declare var UntagResource: StaticOperationSchema;
|
|
|
685
692
|
export declare var UpdateAutomatedReasoningPolicy: StaticOperationSchema;
|
|
686
693
|
export declare var UpdateAutomatedReasoningPolicyAnnotations: StaticOperationSchema;
|
|
687
694
|
export declare var UpdateAutomatedReasoningPolicyTestCase: StaticOperationSchema;
|
|
695
|
+
export declare var UpdateCustomModelDeployment: StaticOperationSchema;
|
|
688
696
|
export declare var UpdateGuardrail: StaticOperationSchema;
|
|
689
697
|
export declare var UpdateMarketplaceModelEndpoint: StaticOperationSchema;
|
|
690
698
|
export declare var UpdateProvisionedModelThroughput: StaticOperationSchema;
|
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.944.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,18 +20,18 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/core": "3.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
30
|
+
"@aws-sdk/token-providers": "3.943.0",
|
|
31
31
|
"@aws-sdk/types": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
36
|
"@smithy/core": "^3.18.5",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|