@aws-sdk/client-bedrock-runtime 3.952.0 → 3.953.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 +610 -428
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/ApplyGuardrailCommand.js +2 -2
- package/dist-es/commands/ConverseCommand.js +2 -2
- package/dist-es/commands/ConverseStreamCommand.js +2 -2
- package/dist-es/commands/CountTokensCommand.js +2 -2
- package/dist-es/commands/GetAsyncInvokeCommand.js +2 -2
- package/dist-es/commands/InvokeModelCommand.js +2 -2
- package/dist-es/commands/InvokeModelWithBidirectionalStreamCommand.js +2 -2
- package/dist-es/commands/InvokeModelWithResponseStreamCommand.js +2 -2
- package/dist-es/commands/ListAsyncInvokesCommand.js +2 -2
- package/dist-es/commands/StartAsyncInvokeCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +410 -402
- package/dist-types/BedrockRuntimeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +175 -222
- package/dist-types/ts3.4/BedrockRuntimeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +174 -224
- package/package.json +42 -42
package/dist-cjs/index.js
CHANGED
|
@@ -125,14 +125,14 @@ class BedrockRuntimeClient extends smithyClient.Client {
|
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
|
|
128
|
+
class BedrockRuntimeServiceException extends smithyClient.ServiceException {
|
|
129
129
|
constructor(options) {
|
|
130
130
|
super(options);
|
|
131
131
|
Object.setPrototypeOf(this, BedrockRuntimeServiceException.prototype);
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
}
|
|
134
134
|
|
|
135
|
-
|
|
135
|
+
class AccessDeniedException extends BedrockRuntimeServiceException {
|
|
136
136
|
name = "AccessDeniedException";
|
|
137
137
|
$fault = "client";
|
|
138
138
|
constructor(opts) {
|
|
@@ -143,8 +143,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BedrockRuntime
|
|
|
143
143
|
});
|
|
144
144
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
145
145
|
}
|
|
146
|
-
}
|
|
147
|
-
|
|
146
|
+
}
|
|
147
|
+
class InternalServerException extends BedrockRuntimeServiceException {
|
|
148
148
|
name = "InternalServerException";
|
|
149
149
|
$fault = "server";
|
|
150
150
|
constructor(opts) {
|
|
@@ -155,8 +155,8 @@ let InternalServerException$1 = class InternalServerException extends BedrockRun
|
|
|
155
155
|
});
|
|
156
156
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
157
157
|
}
|
|
158
|
-
}
|
|
159
|
-
|
|
158
|
+
}
|
|
159
|
+
class ThrottlingException extends BedrockRuntimeServiceException {
|
|
160
160
|
name = "ThrottlingException";
|
|
161
161
|
$fault = "client";
|
|
162
162
|
constructor(opts) {
|
|
@@ -167,8 +167,8 @@ let ThrottlingException$1 = class ThrottlingException extends BedrockRuntimeServ
|
|
|
167
167
|
});
|
|
168
168
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
169
169
|
}
|
|
170
|
-
}
|
|
171
|
-
|
|
170
|
+
}
|
|
171
|
+
class ValidationException extends BedrockRuntimeServiceException {
|
|
172
172
|
name = "ValidationException";
|
|
173
173
|
$fault = "client";
|
|
174
174
|
constructor(opts) {
|
|
@@ -179,8 +179,8 @@ let ValidationException$1 = class ValidationException extends BedrockRuntimeServ
|
|
|
179
179
|
});
|
|
180
180
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
181
181
|
}
|
|
182
|
-
}
|
|
183
|
-
|
|
182
|
+
}
|
|
183
|
+
class ConflictException extends BedrockRuntimeServiceException {
|
|
184
184
|
name = "ConflictException";
|
|
185
185
|
$fault = "client";
|
|
186
186
|
constructor(opts) {
|
|
@@ -191,8 +191,8 @@ let ConflictException$1 = class ConflictException extends BedrockRuntimeServiceE
|
|
|
191
191
|
});
|
|
192
192
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
193
193
|
}
|
|
194
|
-
}
|
|
195
|
-
|
|
194
|
+
}
|
|
195
|
+
class ResourceNotFoundException extends BedrockRuntimeServiceException {
|
|
196
196
|
name = "ResourceNotFoundException";
|
|
197
197
|
$fault = "client";
|
|
198
198
|
constructor(opts) {
|
|
@@ -203,8 +203,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Bedroc
|
|
|
203
203
|
});
|
|
204
204
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
205
205
|
}
|
|
206
|
-
}
|
|
207
|
-
|
|
206
|
+
}
|
|
207
|
+
class ServiceQuotaExceededException extends BedrockRuntimeServiceException {
|
|
208
208
|
name = "ServiceQuotaExceededException";
|
|
209
209
|
$fault = "client";
|
|
210
210
|
constructor(opts) {
|
|
@@ -215,8 +215,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
215
215
|
});
|
|
216
216
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
217
217
|
}
|
|
218
|
-
}
|
|
219
|
-
|
|
218
|
+
}
|
|
219
|
+
class ServiceUnavailableException extends BedrockRuntimeServiceException {
|
|
220
220
|
name = "ServiceUnavailableException";
|
|
221
221
|
$fault = "server";
|
|
222
222
|
constructor(opts) {
|
|
@@ -227,8 +227,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Be
|
|
|
227
227
|
});
|
|
228
228
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
229
229
|
}
|
|
230
|
-
}
|
|
231
|
-
|
|
230
|
+
}
|
|
231
|
+
class ModelErrorException extends BedrockRuntimeServiceException {
|
|
232
232
|
name = "ModelErrorException";
|
|
233
233
|
$fault = "client";
|
|
234
234
|
originalStatusCode;
|
|
@@ -243,8 +243,8 @@ let ModelErrorException$1 = class ModelErrorException extends BedrockRuntimeServ
|
|
|
243
243
|
this.originalStatusCode = opts.originalStatusCode;
|
|
244
244
|
this.resourceName = opts.resourceName;
|
|
245
245
|
}
|
|
246
|
-
}
|
|
247
|
-
|
|
246
|
+
}
|
|
247
|
+
class ModelNotReadyException extends BedrockRuntimeServiceException {
|
|
248
248
|
name = "ModelNotReadyException";
|
|
249
249
|
$fault = "client";
|
|
250
250
|
$retryable = {};
|
|
@@ -256,8 +256,8 @@ let ModelNotReadyException$1 = class ModelNotReadyException extends BedrockRunti
|
|
|
256
256
|
});
|
|
257
257
|
Object.setPrototypeOf(this, ModelNotReadyException.prototype);
|
|
258
258
|
}
|
|
259
|
-
}
|
|
260
|
-
|
|
259
|
+
}
|
|
260
|
+
class ModelTimeoutException extends BedrockRuntimeServiceException {
|
|
261
261
|
name = "ModelTimeoutException";
|
|
262
262
|
$fault = "client";
|
|
263
263
|
constructor(opts) {
|
|
@@ -268,8 +268,8 @@ let ModelTimeoutException$1 = class ModelTimeoutException extends BedrockRuntime
|
|
|
268
268
|
});
|
|
269
269
|
Object.setPrototypeOf(this, ModelTimeoutException.prototype);
|
|
270
270
|
}
|
|
271
|
-
}
|
|
272
|
-
|
|
271
|
+
}
|
|
272
|
+
class ModelStreamErrorException extends BedrockRuntimeServiceException {
|
|
273
273
|
name = "ModelStreamErrorException";
|
|
274
274
|
$fault = "client";
|
|
275
275
|
originalStatusCode;
|
|
@@ -284,7 +284,7 @@ let ModelStreamErrorException$1 = class ModelStreamErrorException extends Bedroc
|
|
|
284
284
|
this.originalStatusCode = opts.originalStatusCode;
|
|
285
285
|
this.originalMessage = opts.originalMessage;
|
|
286
286
|
}
|
|
287
|
-
}
|
|
287
|
+
}
|
|
288
288
|
|
|
289
289
|
const _A = "Accept";
|
|
290
290
|
const _AB = "AudioBlock";
|
|
@@ -740,10 +740,10 @@ var GuardrailAutomatedReasoningStatementLogicContent = [0, n0, _GARSLC, 8, 0];
|
|
|
740
740
|
var GuardrailAutomatedReasoningStatementNaturalLanguageContent = [0, n0, _GARSNLC, 8, 0];
|
|
741
741
|
var ModelInputPayload = [0, n0, _MIP, 8, 15];
|
|
742
742
|
var PartBody = [0, n0, _PB, 8, 21];
|
|
743
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
744
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
745
|
-
var AnyToolChoice = [3, n0, _ATC, 0, [], []];
|
|
746
|
-
var AppliedGuardrailDetails = [
|
|
743
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
744
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
745
|
+
var AnyToolChoice$ = [3, n0, _ATC, 0, [], []];
|
|
746
|
+
var AppliedGuardrailDetails$ = [
|
|
747
747
|
3,
|
|
748
748
|
n0,
|
|
749
749
|
_AGD,
|
|
@@ -751,7 +751,7 @@ var AppliedGuardrailDetails = [
|
|
|
751
751
|
[_gI, _gV, _gA, _gO, _gOu],
|
|
752
752
|
[0, 0, 0, 64 | 0, 0],
|
|
753
753
|
];
|
|
754
|
-
var ApplyGuardrailRequest = [
|
|
754
|
+
var ApplyGuardrailRequest$ = [
|
|
755
755
|
3,
|
|
756
756
|
n0,
|
|
757
757
|
_AGR,
|
|
@@ -759,52 +759,52 @@ var ApplyGuardrailRequest = [
|
|
|
759
759
|
[_gIu, _gV, _s, _co, _oS],
|
|
760
760
|
[[0, 1], [0, 1], 0, [() => GuardrailContentBlockList, 0], 0],
|
|
761
761
|
];
|
|
762
|
-
var ApplyGuardrailResponse = [
|
|
762
|
+
var ApplyGuardrailResponse$ = [
|
|
763
763
|
3,
|
|
764
764
|
n0,
|
|
765
765
|
_AGRp,
|
|
766
766
|
0,
|
|
767
767
|
[_u, _a, _aR, _o, _as, _gC],
|
|
768
768
|
[
|
|
769
|
-
() => GuardrailUsage
|
|
769
|
+
() => GuardrailUsage$,
|
|
770
770
|
0,
|
|
771
771
|
0,
|
|
772
772
|
() => GuardrailOutputContentList,
|
|
773
773
|
[() => GuardrailAssessmentList, 0],
|
|
774
|
-
() => GuardrailCoverage
|
|
774
|
+
() => GuardrailCoverage$,
|
|
775
775
|
],
|
|
776
776
|
];
|
|
777
|
-
var AsyncInvokeS3OutputDataConfig = [3, n0, _AISODC, 0, [_sU, _kKI, _bO], [0, 0, 0]];
|
|
778
|
-
var AsyncInvokeSummary = [
|
|
777
|
+
var AsyncInvokeS3OutputDataConfig$ = [3, n0, _AISODC, 0, [_sU, _kKI, _bO], [0, 0, 0]];
|
|
778
|
+
var AsyncInvokeSummary$ = [
|
|
779
779
|
3,
|
|
780
780
|
n0,
|
|
781
781
|
_AIS,
|
|
782
782
|
0,
|
|
783
783
|
[_iA, _mA, _cRT, _st, _fM, _sT, _lMT, _eT, _oDC],
|
|
784
|
-
[0, 0, 0, 0, [() => AsyncInvokeMessage, 0], 5, 5, 5, () => AsyncInvokeOutputDataConfig],
|
|
784
|
+
[0, 0, 0, 0, [() => AsyncInvokeMessage, 0], 5, 5, 5, () => AsyncInvokeOutputDataConfig$],
|
|
785
785
|
];
|
|
786
|
-
var AudioBlock = [
|
|
786
|
+
var AudioBlock$ = [
|
|
787
787
|
3,
|
|
788
788
|
n0,
|
|
789
789
|
_AB,
|
|
790
790
|
0,
|
|
791
791
|
[_f, _s, _e],
|
|
792
|
-
[0, [() => AudioSource
|
|
792
|
+
[0, [() => AudioSource$, 0], [() => ErrorBlock$, 0]],
|
|
793
793
|
];
|
|
794
|
-
var AutoToolChoice = [3, n0, _ATCu, 0, [], []];
|
|
795
|
-
var BidirectionalInputPayloadPart = [3, n0, _BIPP, 8, [_b], [[() => PartBody, 0]]];
|
|
796
|
-
var BidirectionalOutputPayloadPart = [3, n0, _BOPP, 8, [_b], [[() => PartBody, 0]]];
|
|
797
|
-
var CachePointBlock = [3, n0, _CPB, 0, [_t], [0]];
|
|
798
|
-
var Citation = [
|
|
794
|
+
var AutoToolChoice$ = [3, n0, _ATCu, 0, [], []];
|
|
795
|
+
var BidirectionalInputPayloadPart$ = [3, n0, _BIPP, 8, [_b], [[() => PartBody, 0]]];
|
|
796
|
+
var BidirectionalOutputPayloadPart$ = [3, n0, _BOPP, 8, [_b], [[() => PartBody, 0]]];
|
|
797
|
+
var CachePointBlock$ = [3, n0, _CPB, 0, [_t], [0]];
|
|
798
|
+
var Citation$ = [
|
|
799
799
|
3,
|
|
800
800
|
n0,
|
|
801
801
|
_C,
|
|
802
802
|
0,
|
|
803
803
|
[_ti, _s, _sC, _l],
|
|
804
|
-
[0, 0, () => CitationSourceContentList, () => CitationLocation],
|
|
804
|
+
[0, 0, () => CitationSourceContentList, () => CitationLocation$],
|
|
805
805
|
];
|
|
806
|
-
var CitationsConfig = [3, n0, _CC, 0, [_en], [2]];
|
|
807
|
-
var CitationsContentBlock = [
|
|
806
|
+
var CitationsConfig$ = [3, n0, _CC, 0, [_en], [2]];
|
|
807
|
+
var CitationsContentBlock$ = [
|
|
808
808
|
3,
|
|
809
809
|
n0,
|
|
810
810
|
_CCB,
|
|
@@ -812,36 +812,36 @@ var CitationsContentBlock = [
|
|
|
812
812
|
[_co, _ci],
|
|
813
813
|
[() => CitationGeneratedContentList, () => Citations],
|
|
814
814
|
];
|
|
815
|
-
var CitationsDelta = [
|
|
815
|
+
var CitationsDelta$ = [
|
|
816
816
|
3,
|
|
817
817
|
n0,
|
|
818
818
|
_CD,
|
|
819
819
|
0,
|
|
820
820
|
[_ti, _s, _sC, _l],
|
|
821
|
-
[0, 0, () => CitationSourceContentListDelta, () => CitationLocation],
|
|
821
|
+
[0, 0, () => CitationSourceContentListDelta, () => CitationLocation$],
|
|
822
822
|
];
|
|
823
|
-
var CitationSourceContentDelta = [3, n0, _CSCD, 0, [_te], [0]];
|
|
824
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
825
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
826
|
-
var ContentBlockDeltaEvent = [
|
|
823
|
+
var CitationSourceContentDelta$ = [3, n0, _CSCD, 0, [_te], [0]];
|
|
824
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
825
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
826
|
+
var ContentBlockDeltaEvent$ = [
|
|
827
827
|
3,
|
|
828
828
|
n0,
|
|
829
829
|
_CBDE,
|
|
830
830
|
0,
|
|
831
831
|
[_d, _cBI],
|
|
832
|
-
[[() => ContentBlockDelta
|
|
832
|
+
[[() => ContentBlockDelta$, 0], 1],
|
|
833
833
|
];
|
|
834
|
-
var ContentBlockStartEvent = [
|
|
834
|
+
var ContentBlockStartEvent$ = [
|
|
835
835
|
3,
|
|
836
836
|
n0,
|
|
837
837
|
_CBSE,
|
|
838
838
|
0,
|
|
839
839
|
[_sta, _cBI],
|
|
840
|
-
[() => ContentBlockStart
|
|
840
|
+
[() => ContentBlockStart$, 1],
|
|
841
841
|
];
|
|
842
|
-
var ContentBlockStopEvent = [3, n0, _CBSEo, 0, [_cBI], [1]];
|
|
843
|
-
var ConverseMetrics = [3, n0, _CM, 0, [_lM], [1]];
|
|
844
|
-
var ConverseRequest = [
|
|
842
|
+
var ContentBlockStopEvent$ = [3, n0, _CBSEo, 0, [_cBI], [1]];
|
|
843
|
+
var ConverseMetrics$ = [3, n0, _CM, 0, [_lM], [1]];
|
|
844
|
+
var ConverseRequest$ = [
|
|
845
845
|
3,
|
|
846
846
|
n0,
|
|
847
847
|
_CR,
|
|
@@ -851,50 +851,50 @@ var ConverseRequest = [
|
|
|
851
851
|
[0, 1],
|
|
852
852
|
[() => Messages, 0],
|
|
853
853
|
[() => SystemContentBlocks, 0],
|
|
854
|
-
() => InferenceConfiguration
|
|
855
|
-
() => ToolConfiguration
|
|
856
|
-
() => GuardrailConfiguration
|
|
854
|
+
() => InferenceConfiguration$,
|
|
855
|
+
() => ToolConfiguration$,
|
|
856
|
+
() => GuardrailConfiguration$,
|
|
857
857
|
15,
|
|
858
858
|
[() => PromptVariableMap, 0],
|
|
859
859
|
64 | 0,
|
|
860
860
|
[() => RequestMetadata, 0],
|
|
861
|
-
() => PerformanceConfiguration
|
|
862
|
-
() => ServiceTier
|
|
861
|
+
() => PerformanceConfiguration$,
|
|
862
|
+
() => ServiceTier$,
|
|
863
863
|
],
|
|
864
864
|
];
|
|
865
|
-
var ConverseResponse = [
|
|
865
|
+
var ConverseResponse$ = [
|
|
866
866
|
3,
|
|
867
867
|
n0,
|
|
868
868
|
_CRo,
|
|
869
869
|
0,
|
|
870
870
|
[_ou, _sR, _u, _met, _aMRFd, _tr, _pC, _sTe],
|
|
871
871
|
[
|
|
872
|
-
[() => ConverseOutput
|
|
872
|
+
[() => ConverseOutput$, 0],
|
|
873
873
|
0,
|
|
874
|
-
() => TokenUsage
|
|
875
|
-
() => ConverseMetrics
|
|
874
|
+
() => TokenUsage$,
|
|
875
|
+
() => ConverseMetrics$,
|
|
876
876
|
15,
|
|
877
|
-
[() => ConverseTrace
|
|
878
|
-
() => PerformanceConfiguration
|
|
879
|
-
() => ServiceTier
|
|
877
|
+
[() => ConverseTrace$, 0],
|
|
878
|
+
() => PerformanceConfiguration$,
|
|
879
|
+
() => ServiceTier$,
|
|
880
880
|
],
|
|
881
881
|
];
|
|
882
|
-
var ConverseStreamMetadataEvent = [
|
|
882
|
+
var ConverseStreamMetadataEvent$ = [
|
|
883
883
|
3,
|
|
884
884
|
n0,
|
|
885
885
|
_CSME,
|
|
886
886
|
0,
|
|
887
887
|
[_u, _met, _tr, _pC, _sTe],
|
|
888
888
|
[
|
|
889
|
-
() => TokenUsage
|
|
890
|
-
() => ConverseStreamMetrics
|
|
891
|
-
[() => ConverseStreamTrace
|
|
892
|
-
() => PerformanceConfiguration
|
|
893
|
-
() => ServiceTier
|
|
889
|
+
() => TokenUsage$,
|
|
890
|
+
() => ConverseStreamMetrics$,
|
|
891
|
+
[() => ConverseStreamTrace$, 0],
|
|
892
|
+
() => PerformanceConfiguration$,
|
|
893
|
+
() => ServiceTier$,
|
|
894
894
|
],
|
|
895
895
|
];
|
|
896
|
-
var ConverseStreamMetrics = [3, n0, _CSM, 0, [_lM], [1]];
|
|
897
|
-
var ConverseStreamRequest = [
|
|
896
|
+
var ConverseStreamMetrics$ = [3, n0, _CSM, 0, [_lM], [1]];
|
|
897
|
+
var ConverseStreamRequest$ = [
|
|
898
898
|
3,
|
|
899
899
|
n0,
|
|
900
900
|
_CSR,
|
|
@@ -904,50 +904,50 @@ var ConverseStreamRequest = [
|
|
|
904
904
|
[0, 1],
|
|
905
905
|
[() => Messages, 0],
|
|
906
906
|
[() => SystemContentBlocks, 0],
|
|
907
|
-
() => InferenceConfiguration
|
|
908
|
-
() => ToolConfiguration
|
|
909
|
-
() => GuardrailStreamConfiguration
|
|
907
|
+
() => InferenceConfiguration$,
|
|
908
|
+
() => ToolConfiguration$,
|
|
909
|
+
() => GuardrailStreamConfiguration$,
|
|
910
910
|
15,
|
|
911
911
|
[() => PromptVariableMap, 0],
|
|
912
912
|
64 | 0,
|
|
913
913
|
[() => RequestMetadata, 0],
|
|
914
|
-
() => PerformanceConfiguration
|
|
915
|
-
() => ServiceTier
|
|
914
|
+
() => PerformanceConfiguration$,
|
|
915
|
+
() => ServiceTier$,
|
|
916
916
|
],
|
|
917
917
|
];
|
|
918
|
-
var ConverseStreamResponse = [
|
|
918
|
+
var ConverseStreamResponse$ = [
|
|
919
919
|
3,
|
|
920
920
|
n0,
|
|
921
921
|
_CSRo,
|
|
922
922
|
0,
|
|
923
923
|
[_str],
|
|
924
|
-
[[() => ConverseStreamOutput
|
|
924
|
+
[[() => ConverseStreamOutput$, 16]],
|
|
925
925
|
];
|
|
926
|
-
var ConverseStreamTrace = [
|
|
926
|
+
var ConverseStreamTrace$ = [
|
|
927
927
|
3,
|
|
928
928
|
n0,
|
|
929
929
|
_CST,
|
|
930
930
|
0,
|
|
931
931
|
[_g, _pR],
|
|
932
|
-
[[() => GuardrailTraceAssessment
|
|
932
|
+
[[() => GuardrailTraceAssessment$, 0], () => PromptRouterTrace$],
|
|
933
933
|
];
|
|
934
|
-
var ConverseTokensRequest = [
|
|
934
|
+
var ConverseTokensRequest$ = [
|
|
935
935
|
3,
|
|
936
936
|
n0,
|
|
937
937
|
_CTR,
|
|
938
938
|
0,
|
|
939
939
|
[_me, _sy, _tC, _aMRF],
|
|
940
|
-
[[() => Messages, 0], [() => SystemContentBlocks, 0], () => ToolConfiguration
|
|
940
|
+
[[() => Messages, 0], [() => SystemContentBlocks, 0], () => ToolConfiguration$, 15],
|
|
941
941
|
];
|
|
942
|
-
var ConverseTrace = [
|
|
942
|
+
var ConverseTrace$ = [
|
|
943
943
|
3,
|
|
944
944
|
n0,
|
|
945
945
|
_CT,
|
|
946
946
|
0,
|
|
947
947
|
[_g, _pR],
|
|
948
|
-
[[() => GuardrailTraceAssessment
|
|
948
|
+
[[() => GuardrailTraceAssessment$, 0], () => PromptRouterTrace$],
|
|
949
949
|
];
|
|
950
|
-
var CountTokensRequest = [
|
|
950
|
+
var CountTokensRequest$ = [
|
|
951
951
|
3,
|
|
952
952
|
n0,
|
|
953
953
|
_CTRo,
|
|
@@ -955,61 +955,61 @@ var CountTokensRequest = [
|
|
|
955
955
|
[_mI, _i],
|
|
956
956
|
[
|
|
957
957
|
[0, 1],
|
|
958
|
-
[() => CountTokensInput
|
|
958
|
+
[() => CountTokensInput$, 0],
|
|
959
959
|
],
|
|
960
960
|
];
|
|
961
|
-
var CountTokensResponse = [3, n0, _CTRou, 0, [_iT], [1]];
|
|
962
|
-
var DocumentBlock = [
|
|
961
|
+
var CountTokensResponse$ = [3, n0, _CTRou, 0, [_iT], [1]];
|
|
962
|
+
var DocumentBlock$ = [
|
|
963
963
|
3,
|
|
964
964
|
n0,
|
|
965
965
|
_DB,
|
|
966
966
|
0,
|
|
967
967
|
[_f, _n, _s, _con, _ci],
|
|
968
|
-
[0, 0, () => DocumentSource
|
|
968
|
+
[0, 0, () => DocumentSource$, 0, () => CitationsConfig$],
|
|
969
969
|
];
|
|
970
|
-
var DocumentCharLocation = [3, n0, _DCL, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
971
|
-
var DocumentChunkLocation = [3, n0, _DCLo, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
972
|
-
var DocumentPageLocation = [3, n0, _DPL, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
973
|
-
var ErrorBlock = [3, n0, _EB, 8, [_m], [0]];
|
|
974
|
-
var GetAsyncInvokeRequest = [3, n0, _GAIR, 0, [_iA], [[0, 1]]];
|
|
975
|
-
var GetAsyncInvokeResponse = [
|
|
970
|
+
var DocumentCharLocation$ = [3, n0, _DCL, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
971
|
+
var DocumentChunkLocation$ = [3, n0, _DCLo, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
972
|
+
var DocumentPageLocation$ = [3, n0, _DPL, 0, [_dI, _sta, _end], [1, 1, 1]];
|
|
973
|
+
var ErrorBlock$ = [3, n0, _EB, 8, [_m], [0]];
|
|
974
|
+
var GetAsyncInvokeRequest$ = [3, n0, _GAIR, 0, [_iA], [[0, 1]]];
|
|
975
|
+
var GetAsyncInvokeResponse$ = [
|
|
976
976
|
3,
|
|
977
977
|
n0,
|
|
978
978
|
_GAIRe,
|
|
979
979
|
0,
|
|
980
980
|
[_iA, _mA, _cRT, _st, _fM, _sT, _lMT, _eT, _oDC],
|
|
981
|
-
[0, 0, 0, 0, [() => AsyncInvokeMessage, 0], 5, 5, 5, () => AsyncInvokeOutputDataConfig],
|
|
981
|
+
[0, 0, 0, 0, [() => AsyncInvokeMessage, 0], 5, 5, 5, () => AsyncInvokeOutputDataConfig$],
|
|
982
982
|
];
|
|
983
|
-
var GuardrailAssessment = [
|
|
983
|
+
var GuardrailAssessment$ = [
|
|
984
984
|
3,
|
|
985
985
|
n0,
|
|
986
986
|
_GA,
|
|
987
987
|
0,
|
|
988
988
|
[_tP, _cP, _wP, _sIP, _cGP, _aRP, _iM, _aGD],
|
|
989
989
|
[
|
|
990
|
-
() => GuardrailTopicPolicyAssessment
|
|
991
|
-
() => GuardrailContentPolicyAssessment
|
|
992
|
-
() => GuardrailWordPolicyAssessment
|
|
993
|
-
() => GuardrailSensitiveInformationPolicyAssessment
|
|
994
|
-
() => GuardrailContextualGroundingPolicyAssessment
|
|
995
|
-
[() => GuardrailAutomatedReasoningPolicyAssessment
|
|
996
|
-
() => GuardrailInvocationMetrics
|
|
997
|
-
() => AppliedGuardrailDetails
|
|
990
|
+
() => GuardrailTopicPolicyAssessment$,
|
|
991
|
+
() => GuardrailContentPolicyAssessment$,
|
|
992
|
+
() => GuardrailWordPolicyAssessment$,
|
|
993
|
+
() => GuardrailSensitiveInformationPolicyAssessment$,
|
|
994
|
+
() => GuardrailContextualGroundingPolicyAssessment$,
|
|
995
|
+
[() => GuardrailAutomatedReasoningPolicyAssessment$, 0],
|
|
996
|
+
() => GuardrailInvocationMetrics$,
|
|
997
|
+
() => AppliedGuardrailDetails$,
|
|
998
998
|
],
|
|
999
999
|
];
|
|
1000
|
-
var GuardrailAutomatedReasoningImpossibleFinding = [
|
|
1000
|
+
var GuardrailAutomatedReasoningImpossibleFinding$ = [
|
|
1001
1001
|
3,
|
|
1002
1002
|
n0,
|
|
1003
1003
|
_GARIF,
|
|
1004
1004
|
0,
|
|
1005
1005
|
[_tra, _cR, _lW],
|
|
1006
1006
|
[
|
|
1007
|
-
[() => GuardrailAutomatedReasoningTranslation
|
|
1007
|
+
[() => GuardrailAutomatedReasoningTranslation$, 0],
|
|
1008
1008
|
() => GuardrailAutomatedReasoningRuleList,
|
|
1009
|
-
[() => GuardrailAutomatedReasoningLogicWarning
|
|
1009
|
+
[() => GuardrailAutomatedReasoningLogicWarning$, 0],
|
|
1010
1010
|
],
|
|
1011
1011
|
];
|
|
1012
|
-
var GuardrailAutomatedReasoningInputTextReference = [
|
|
1012
|
+
var GuardrailAutomatedReasoningInputTextReference$ = [
|
|
1013
1013
|
3,
|
|
1014
1014
|
n0,
|
|
1015
1015
|
_GARITR,
|
|
@@ -1017,19 +1017,19 @@ var GuardrailAutomatedReasoningInputTextReference = [
|
|
|
1017
1017
|
[_te],
|
|
1018
1018
|
[[() => GuardrailAutomatedReasoningStatementNaturalLanguageContent, 0]],
|
|
1019
1019
|
];
|
|
1020
|
-
var GuardrailAutomatedReasoningInvalidFinding = [
|
|
1020
|
+
var GuardrailAutomatedReasoningInvalidFinding$ = [
|
|
1021
1021
|
3,
|
|
1022
1022
|
n0,
|
|
1023
1023
|
_GARIFu,
|
|
1024
1024
|
0,
|
|
1025
1025
|
[_tra, _cR, _lW],
|
|
1026
1026
|
[
|
|
1027
|
-
[() => GuardrailAutomatedReasoningTranslation
|
|
1027
|
+
[() => GuardrailAutomatedReasoningTranslation$, 0],
|
|
1028
1028
|
() => GuardrailAutomatedReasoningRuleList,
|
|
1029
|
-
[() => GuardrailAutomatedReasoningLogicWarning
|
|
1029
|
+
[() => GuardrailAutomatedReasoningLogicWarning$, 0],
|
|
1030
1030
|
],
|
|
1031
1031
|
];
|
|
1032
|
-
var GuardrailAutomatedReasoningLogicWarning = [
|
|
1032
|
+
var GuardrailAutomatedReasoningLogicWarning$ = [
|
|
1033
1033
|
3,
|
|
1034
1034
|
n0,
|
|
1035
1035
|
_GARLW,
|
|
@@ -1037,8 +1037,8 @@ var GuardrailAutomatedReasoningLogicWarning = [
|
|
|
1037
1037
|
[_t, _p, _cl],
|
|
1038
1038
|
[0, [() => GuardrailAutomatedReasoningStatementList, 0], [() => GuardrailAutomatedReasoningStatementList, 0]],
|
|
1039
1039
|
];
|
|
1040
|
-
var GuardrailAutomatedReasoningNoTranslationsFinding = [3, n0, _GARNTF, 0, [], []];
|
|
1041
|
-
var GuardrailAutomatedReasoningPolicyAssessment = [
|
|
1040
|
+
var GuardrailAutomatedReasoningNoTranslationsFinding$ = [3, n0, _GARNTF, 0, [], []];
|
|
1041
|
+
var GuardrailAutomatedReasoningPolicyAssessment$ = [
|
|
1042
1042
|
3,
|
|
1043
1043
|
n0,
|
|
1044
1044
|
_GARPA,
|
|
@@ -1046,21 +1046,21 @@ var GuardrailAutomatedReasoningPolicyAssessment = [
|
|
|
1046
1046
|
[_fi],
|
|
1047
1047
|
[[() => GuardrailAutomatedReasoningFindingList, 0]],
|
|
1048
1048
|
];
|
|
1049
|
-
var GuardrailAutomatedReasoningRule = [3, n0, _GARR, 0, [_id, _pVA], [0, 0]];
|
|
1050
|
-
var GuardrailAutomatedReasoningSatisfiableFinding = [
|
|
1049
|
+
var GuardrailAutomatedReasoningRule$ = [3, n0, _GARR, 0, [_id, _pVA], [0, 0]];
|
|
1050
|
+
var GuardrailAutomatedReasoningSatisfiableFinding$ = [
|
|
1051
1051
|
3,
|
|
1052
1052
|
n0,
|
|
1053
1053
|
_GARSF,
|
|
1054
1054
|
0,
|
|
1055
1055
|
[_tra, _cTS, _cFS, _lW],
|
|
1056
1056
|
[
|
|
1057
|
-
[() => GuardrailAutomatedReasoningTranslation
|
|
1058
|
-
[() => GuardrailAutomatedReasoningScenario
|
|
1059
|
-
[() => GuardrailAutomatedReasoningScenario
|
|
1060
|
-
[() => GuardrailAutomatedReasoningLogicWarning
|
|
1057
|
+
[() => GuardrailAutomatedReasoningTranslation$, 0],
|
|
1058
|
+
[() => GuardrailAutomatedReasoningScenario$, 0],
|
|
1059
|
+
[() => GuardrailAutomatedReasoningScenario$, 0],
|
|
1060
|
+
[() => GuardrailAutomatedReasoningLogicWarning$, 0],
|
|
1061
1061
|
],
|
|
1062
1062
|
];
|
|
1063
|
-
var GuardrailAutomatedReasoningScenario = [
|
|
1063
|
+
var GuardrailAutomatedReasoningScenario$ = [
|
|
1064
1064
|
3,
|
|
1065
1065
|
n0,
|
|
1066
1066
|
_GARS,
|
|
@@ -1068,7 +1068,7 @@ var GuardrailAutomatedReasoningScenario = [
|
|
|
1068
1068
|
[_stat],
|
|
1069
1069
|
[[() => GuardrailAutomatedReasoningStatementList, 0]],
|
|
1070
1070
|
];
|
|
1071
|
-
var GuardrailAutomatedReasoningStatement = [
|
|
1071
|
+
var GuardrailAutomatedReasoningStatement$ = [
|
|
1072
1072
|
3,
|
|
1073
1073
|
n0,
|
|
1074
1074
|
_GARSu,
|
|
@@ -1079,8 +1079,8 @@ var GuardrailAutomatedReasoningStatement = [
|
|
|
1079
1079
|
[() => GuardrailAutomatedReasoningStatementNaturalLanguageContent, 0],
|
|
1080
1080
|
],
|
|
1081
1081
|
];
|
|
1082
|
-
var GuardrailAutomatedReasoningTooComplexFinding = [3, n0, _GARTCF, 0, [], []];
|
|
1083
|
-
var GuardrailAutomatedReasoningTranslation = [
|
|
1082
|
+
var GuardrailAutomatedReasoningTooComplexFinding$ = [3, n0, _GARTCF, 0, [], []];
|
|
1083
|
+
var GuardrailAutomatedReasoningTranslation$ = [
|
|
1084
1084
|
3,
|
|
1085
1085
|
n0,
|
|
1086
1086
|
_GART,
|
|
@@ -1094,7 +1094,7 @@ var GuardrailAutomatedReasoningTranslation = [
|
|
|
1094
1094
|
1,
|
|
1095
1095
|
],
|
|
1096
1096
|
];
|
|
1097
|
-
var GuardrailAutomatedReasoningTranslationAmbiguousFinding = [
|
|
1097
|
+
var GuardrailAutomatedReasoningTranslationAmbiguousFinding$ = [
|
|
1098
1098
|
3,
|
|
1099
1099
|
n0,
|
|
1100
1100
|
_GARTAF,
|
|
@@ -1105,7 +1105,7 @@ var GuardrailAutomatedReasoningTranslationAmbiguousFinding = [
|
|
|
1105
1105
|
[() => GuardrailAutomatedReasoningDifferenceScenarioList, 0],
|
|
1106
1106
|
],
|
|
1107
1107
|
];
|
|
1108
|
-
var GuardrailAutomatedReasoningTranslationOption = [
|
|
1108
|
+
var GuardrailAutomatedReasoningTranslationOption$ = [
|
|
1109
1109
|
3,
|
|
1110
1110
|
n0,
|
|
1111
1111
|
_GARTO,
|
|
@@ -1113,22 +1113,29 @@ var GuardrailAutomatedReasoningTranslationOption = [
|
|
|
1113
1113
|
[_tran],
|
|
1114
1114
|
[[() => GuardrailAutomatedReasoningTranslationList, 0]],
|
|
1115
1115
|
];
|
|
1116
|
-
var GuardrailAutomatedReasoningValidFinding = [
|
|
1116
|
+
var GuardrailAutomatedReasoningValidFinding$ = [
|
|
1117
1117
|
3,
|
|
1118
1118
|
n0,
|
|
1119
1119
|
_GARVF,
|
|
1120
1120
|
0,
|
|
1121
1121
|
[_tra, _cTS, _sRu, _lW],
|
|
1122
1122
|
[
|
|
1123
|
-
[() => GuardrailAutomatedReasoningTranslation
|
|
1124
|
-
[() => GuardrailAutomatedReasoningScenario
|
|
1123
|
+
[() => GuardrailAutomatedReasoningTranslation$, 0],
|
|
1124
|
+
[() => GuardrailAutomatedReasoningScenario$, 0],
|
|
1125
1125
|
() => GuardrailAutomatedReasoningRuleList,
|
|
1126
|
-
[() => GuardrailAutomatedReasoningLogicWarning
|
|
1126
|
+
[() => GuardrailAutomatedReasoningLogicWarning$, 0],
|
|
1127
1127
|
],
|
|
1128
1128
|
];
|
|
1129
|
-
var GuardrailConfiguration = [3, n0, _GC, 0, [_gIu, _gV, _tr], [0, 0, 0]];
|
|
1130
|
-
var GuardrailContentFilter = [
|
|
1131
|
-
|
|
1129
|
+
var GuardrailConfiguration$ = [3, n0, _GC, 0, [_gIu, _gV, _tr], [0, 0, 0]];
|
|
1130
|
+
var GuardrailContentFilter$ = [
|
|
1131
|
+
3,
|
|
1132
|
+
n0,
|
|
1133
|
+
_GCF,
|
|
1134
|
+
0,
|
|
1135
|
+
[_t, _conf, _fS, _a, _de],
|
|
1136
|
+
[0, 0, 0, 0, 2],
|
|
1137
|
+
];
|
|
1138
|
+
var GuardrailContentPolicyAssessment$ = [
|
|
1132
1139
|
3,
|
|
1133
1140
|
n0,
|
|
1134
1141
|
_GCPA,
|
|
@@ -1136,7 +1143,7 @@ var GuardrailContentPolicyAssessment = [
|
|
|
1136
1143
|
[_fil],
|
|
1137
1144
|
[() => GuardrailContentFilterList],
|
|
1138
1145
|
];
|
|
1139
|
-
var GuardrailContextualGroundingFilter = [
|
|
1146
|
+
var GuardrailContextualGroundingFilter$ = [
|
|
1140
1147
|
3,
|
|
1141
1148
|
n0,
|
|
1142
1149
|
_GCGF,
|
|
@@ -1144,7 +1151,7 @@ var GuardrailContextualGroundingFilter = [
|
|
|
1144
1151
|
[_t, _th, _sc, _a, _de],
|
|
1145
1152
|
[0, 1, 1, 0, 2],
|
|
1146
1153
|
];
|
|
1147
|
-
var GuardrailContextualGroundingPolicyAssessment = [
|
|
1154
|
+
var GuardrailContextualGroundingPolicyAssessment$ = [
|
|
1148
1155
|
3,
|
|
1149
1156
|
n0,
|
|
1150
1157
|
_GCGPA,
|
|
@@ -1152,46 +1159,46 @@ var GuardrailContextualGroundingPolicyAssessment = [
|
|
|
1152
1159
|
[_fil],
|
|
1153
1160
|
[() => GuardrailContextualGroundingFilters],
|
|
1154
1161
|
];
|
|
1155
|
-
var GuardrailConverseImageBlock = [
|
|
1162
|
+
var GuardrailConverseImageBlock$ = [
|
|
1156
1163
|
3,
|
|
1157
1164
|
n0,
|
|
1158
1165
|
_GCIB,
|
|
1159
1166
|
8,
|
|
1160
1167
|
[_f, _s],
|
|
1161
|
-
[0, [() => GuardrailConverseImageSource
|
|
1168
|
+
[0, [() => GuardrailConverseImageSource$, 0]],
|
|
1162
1169
|
];
|
|
1163
|
-
var GuardrailConverseTextBlock = [3, n0, _GCTB, 0, [_te, _q], [0, 64 | 0]];
|
|
1164
|
-
var GuardrailCoverage = [
|
|
1170
|
+
var GuardrailConverseTextBlock$ = [3, n0, _GCTB, 0, [_te, _q], [0, 64 | 0]];
|
|
1171
|
+
var GuardrailCoverage$ = [
|
|
1165
1172
|
3,
|
|
1166
1173
|
n0,
|
|
1167
1174
|
_GCu,
|
|
1168
1175
|
0,
|
|
1169
1176
|
[_tCe, _im],
|
|
1170
|
-
[() => GuardrailTextCharactersCoverage
|
|
1177
|
+
[() => GuardrailTextCharactersCoverage$, () => GuardrailImageCoverage$],
|
|
1171
1178
|
];
|
|
1172
|
-
var GuardrailCustomWord = [3, n0, _GCW, 0, [_ma, _a, _de], [0, 0, 2]];
|
|
1173
|
-
var GuardrailImageBlock = [
|
|
1179
|
+
var GuardrailCustomWord$ = [3, n0, _GCW, 0, [_ma, _a, _de], [0, 0, 2]];
|
|
1180
|
+
var GuardrailImageBlock$ = [
|
|
1174
1181
|
3,
|
|
1175
1182
|
n0,
|
|
1176
1183
|
_GIB,
|
|
1177
1184
|
8,
|
|
1178
1185
|
[_f, _s],
|
|
1179
|
-
[0, [() => GuardrailImageSource
|
|
1186
|
+
[0, [() => GuardrailImageSource$, 0]],
|
|
1180
1187
|
];
|
|
1181
|
-
var GuardrailImageCoverage = [3, n0, _GIC, 0, [_gu, _to], [1, 1]];
|
|
1182
|
-
var GuardrailInvocationMetrics = [
|
|
1188
|
+
var GuardrailImageCoverage$ = [3, n0, _GIC, 0, [_gu, _to], [1, 1]];
|
|
1189
|
+
var GuardrailInvocationMetrics$ = [
|
|
1183
1190
|
3,
|
|
1184
1191
|
n0,
|
|
1185
1192
|
_GIM,
|
|
1186
1193
|
0,
|
|
1187
1194
|
[_gPL, _u, _gC],
|
|
1188
|
-
[1, () => GuardrailUsage
|
|
1195
|
+
[1, () => GuardrailUsage$, () => GuardrailCoverage$],
|
|
1189
1196
|
];
|
|
1190
|
-
var GuardrailManagedWord = [3, n0, _GMW, 0, [_ma, _t, _a, _de], [0, 0, 0, 2]];
|
|
1191
|
-
var GuardrailOutputContent = [3, n0, _GOC, 0, [_te], [0]];
|
|
1192
|
-
var GuardrailPiiEntityFilter = [3, n0, _GPEF, 0, [_ma, _t, _a, _de], [0, 0, 0, 2]];
|
|
1193
|
-
var GuardrailRegexFilter = [3, n0, _GRF, 0, [_n, _ma, _r, _a, _de], [0, 0, 0, 0, 2]];
|
|
1194
|
-
var GuardrailSensitiveInformationPolicyAssessment = [
|
|
1197
|
+
var GuardrailManagedWord$ = [3, n0, _GMW, 0, [_ma, _t, _a, _de], [0, 0, 0, 2]];
|
|
1198
|
+
var GuardrailOutputContent$ = [3, n0, _GOC, 0, [_te], [0]];
|
|
1199
|
+
var GuardrailPiiEntityFilter$ = [3, n0, _GPEF, 0, [_ma, _t, _a, _de], [0, 0, 0, 2]];
|
|
1200
|
+
var GuardrailRegexFilter$ = [3, n0, _GRF, 0, [_n, _ma, _r, _a, _de], [0, 0, 0, 0, 2]];
|
|
1201
|
+
var GuardrailSensitiveInformationPolicyAssessment$ = [
|
|
1195
1202
|
3,
|
|
1196
1203
|
n0,
|
|
1197
1204
|
_GSIPA,
|
|
@@ -1199,11 +1206,18 @@ var GuardrailSensitiveInformationPolicyAssessment = [
|
|
|
1199
1206
|
[_pE, _re],
|
|
1200
1207
|
[() => GuardrailPiiEntityFilterList, () => GuardrailRegexFilterList],
|
|
1201
1208
|
];
|
|
1202
|
-
var GuardrailStreamConfiguration = [
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1209
|
+
var GuardrailStreamConfiguration$ = [
|
|
1210
|
+
3,
|
|
1211
|
+
n0,
|
|
1212
|
+
_GSC,
|
|
1213
|
+
0,
|
|
1214
|
+
[_gIu, _gV, _tr, _sPM],
|
|
1215
|
+
[0, 0, 0, 0],
|
|
1216
|
+
];
|
|
1217
|
+
var GuardrailTextBlock$ = [3, n0, _GTB, 0, [_te, _q], [0, 64 | 0]];
|
|
1218
|
+
var GuardrailTextCharactersCoverage$ = [3, n0, _GTCC, 0, [_gu, _to], [1, 1]];
|
|
1219
|
+
var GuardrailTopic$ = [3, n0, _GT, 0, [_n, _t, _a, _de], [0, 0, 0, 2]];
|
|
1220
|
+
var GuardrailTopicPolicyAssessment$ = [
|
|
1207
1221
|
3,
|
|
1208
1222
|
n0,
|
|
1209
1223
|
_GTPA,
|
|
@@ -1211,7 +1225,7 @@ var GuardrailTopicPolicyAssessment = [
|
|
|
1211
1225
|
[_top],
|
|
1212
1226
|
[() => GuardrailTopicList],
|
|
1213
1227
|
];
|
|
1214
|
-
var GuardrailTraceAssessment = [
|
|
1228
|
+
var GuardrailTraceAssessment$ = [
|
|
1215
1229
|
3,
|
|
1216
1230
|
n0,
|
|
1217
1231
|
_GTA,
|
|
@@ -1219,7 +1233,7 @@ var GuardrailTraceAssessment = [
|
|
|
1219
1233
|
[_mO, _iAn, _oA, _aR],
|
|
1220
1234
|
[64 | 0, [() => GuardrailAssessmentMap, 0], [() => GuardrailAssessmentListMap, 0], 0],
|
|
1221
1235
|
];
|
|
1222
|
-
var GuardrailUsage = [
|
|
1236
|
+
var GuardrailUsage$ = [
|
|
1223
1237
|
3,
|
|
1224
1238
|
n0,
|
|
1225
1239
|
_GU,
|
|
@@ -1227,7 +1241,7 @@ var GuardrailUsage = [
|
|
|
1227
1241
|
[_tPU, _cPU, _wPU, _sIPU, _sIPFU, _cGPU, _cPIU, _aRPU, _aRPu],
|
|
1228
1242
|
[1, 1, 1, 1, 1, 1, 1, 1, 1],
|
|
1229
1243
|
];
|
|
1230
|
-
var GuardrailWordPolicyAssessment = [
|
|
1244
|
+
var GuardrailWordPolicyAssessment$ = [
|
|
1231
1245
|
3,
|
|
1232
1246
|
n0,
|
|
1233
1247
|
_GWPA,
|
|
@@ -1235,30 +1249,30 @@ var GuardrailWordPolicyAssessment = [
|
|
|
1235
1249
|
[_cW, _mWL],
|
|
1236
1250
|
[() => GuardrailCustomWordList, () => GuardrailManagedWordList],
|
|
1237
1251
|
];
|
|
1238
|
-
var ImageBlock = [
|
|
1252
|
+
var ImageBlock$ = [
|
|
1239
1253
|
3,
|
|
1240
1254
|
n0,
|
|
1241
1255
|
_IB,
|
|
1242
1256
|
0,
|
|
1243
1257
|
[_f, _s, _e],
|
|
1244
|
-
[0, [() => ImageSource
|
|
1258
|
+
[0, [() => ImageSource$, 0], [() => ErrorBlock$, 0]],
|
|
1245
1259
|
];
|
|
1246
|
-
var ImageBlockDelta = [
|
|
1260
|
+
var ImageBlockDelta$ = [
|
|
1247
1261
|
3,
|
|
1248
1262
|
n0,
|
|
1249
1263
|
_IBD,
|
|
1250
1264
|
0,
|
|
1251
1265
|
[_s, _e],
|
|
1252
1266
|
[
|
|
1253
|
-
[() => ImageSource
|
|
1254
|
-
[() => ErrorBlock
|
|
1267
|
+
[() => ImageSource$, 0],
|
|
1268
|
+
[() => ErrorBlock$, 0],
|
|
1255
1269
|
],
|
|
1256
1270
|
];
|
|
1257
|
-
var ImageBlockStart = [3, n0, _IBS, 0, [_f], [0]];
|
|
1258
|
-
var InferenceConfiguration = [3, n0, _IC, 0, [_mT, _tem, _tPo, _sS], [1, 1, 1, 64 | 0]];
|
|
1259
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
1260
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
1261
|
-
var InvokeModelRequest = [
|
|
1271
|
+
var ImageBlockStart$ = [3, n0, _IBS, 0, [_f], [0]];
|
|
1272
|
+
var InferenceConfiguration$ = [3, n0, _IC, 0, [_mT, _tem, _tPo, _sS], [1, 1, 1, 64 | 0]];
|
|
1273
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
1274
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1275
|
+
var InvokeModelRequest$ = [
|
|
1262
1276
|
3,
|
|
1263
1277
|
n0,
|
|
1264
1278
|
_IMR,
|
|
@@ -1276,7 +1290,7 @@ var InvokeModelRequest = [
|
|
|
1276
1290
|
[0, { [_hH]: _XABST }],
|
|
1277
1291
|
],
|
|
1278
1292
|
];
|
|
1279
|
-
var InvokeModelResponse = [
|
|
1293
|
+
var InvokeModelResponse$ = [
|
|
1280
1294
|
3,
|
|
1281
1295
|
n0,
|
|
1282
1296
|
_IMRn,
|
|
@@ -1289,8 +1303,8 @@ var InvokeModelResponse = [
|
|
|
1289
1303
|
[0, { [_hH]: _XABST }],
|
|
1290
1304
|
],
|
|
1291
1305
|
];
|
|
1292
|
-
var InvokeModelTokensRequest = [3, n0, _IMTR, 0, [_bo], [[() => Body, 0]]];
|
|
1293
|
-
var InvokeModelWithBidirectionalStreamRequest = [
|
|
1306
|
+
var InvokeModelTokensRequest$ = [3, n0, _IMTR, 0, [_bo], [[() => Body, 0]]];
|
|
1307
|
+
var InvokeModelWithBidirectionalStreamRequest$ = [
|
|
1294
1308
|
3,
|
|
1295
1309
|
n0,
|
|
1296
1310
|
_IMWBSR,
|
|
@@ -1298,18 +1312,18 @@ var InvokeModelWithBidirectionalStreamRequest = [
|
|
|
1298
1312
|
[_mI, _bo],
|
|
1299
1313
|
[
|
|
1300
1314
|
[0, 1],
|
|
1301
|
-
[() => InvokeModelWithBidirectionalStreamInput
|
|
1315
|
+
[() => InvokeModelWithBidirectionalStreamInput$, 16],
|
|
1302
1316
|
],
|
|
1303
1317
|
];
|
|
1304
|
-
var InvokeModelWithBidirectionalStreamResponse = [
|
|
1318
|
+
var InvokeModelWithBidirectionalStreamResponse$ = [
|
|
1305
1319
|
3,
|
|
1306
1320
|
n0,
|
|
1307
1321
|
_IMWBSRn,
|
|
1308
1322
|
0,
|
|
1309
1323
|
[_bo],
|
|
1310
|
-
[[() => InvokeModelWithBidirectionalStreamOutput
|
|
1324
|
+
[[() => InvokeModelWithBidirectionalStreamOutput$, 16]],
|
|
1311
1325
|
];
|
|
1312
|
-
var InvokeModelWithResponseStreamRequest = [
|
|
1326
|
+
var InvokeModelWithResponseStreamRequest$ = [
|
|
1313
1327
|
3,
|
|
1314
1328
|
n0,
|
|
1315
1329
|
_IMWRSR,
|
|
@@ -1327,20 +1341,20 @@ var InvokeModelWithResponseStreamRequest = [
|
|
|
1327
1341
|
[0, { [_hH]: _XABST }],
|
|
1328
1342
|
],
|
|
1329
1343
|
];
|
|
1330
|
-
var InvokeModelWithResponseStreamResponse = [
|
|
1344
|
+
var InvokeModelWithResponseStreamResponse$ = [
|
|
1331
1345
|
3,
|
|
1332
1346
|
n0,
|
|
1333
1347
|
_IMWRSRn,
|
|
1334
1348
|
0,
|
|
1335
1349
|
[_bo, _cT, _pCL, _sTe],
|
|
1336
1350
|
[
|
|
1337
|
-
[() => ResponseStream
|
|
1351
|
+
[() => ResponseStream$, 16],
|
|
1338
1352
|
[0, { [_hH]: _XABCT }],
|
|
1339
1353
|
[0, { [_hH]: _XABPL }],
|
|
1340
1354
|
[0, { [_hH]: _XABST }],
|
|
1341
1355
|
],
|
|
1342
1356
|
];
|
|
1343
|
-
var ListAsyncInvokesRequest = [
|
|
1357
|
+
var ListAsyncInvokesRequest$ = [
|
|
1344
1358
|
3,
|
|
1345
1359
|
n0,
|
|
1346
1360
|
_LAIR,
|
|
@@ -1356,7 +1370,7 @@ var ListAsyncInvokesRequest = [
|
|
|
1356
1370
|
[0, { [_hQ]: _sO }],
|
|
1357
1371
|
],
|
|
1358
1372
|
];
|
|
1359
|
-
var ListAsyncInvokesResponse = [
|
|
1373
|
+
var ListAsyncInvokesResponse$ = [
|
|
1360
1374
|
3,
|
|
1361
1375
|
n0,
|
|
1362
1376
|
_LAIRi,
|
|
@@ -1364,10 +1378,10 @@ var ListAsyncInvokesResponse = [
|
|
|
1364
1378
|
[_nT, _aIS],
|
|
1365
1379
|
[0, [() => AsyncInvokeSummaries, 0]],
|
|
1366
1380
|
];
|
|
1367
|
-
var Message = [3, n0, _M, 0, [_ro, _co], [0, [() => ContentBlocks, 0]]];
|
|
1368
|
-
var MessageStartEvent = [3, n0, _MSE, 0, [_ro], [0]];
|
|
1369
|
-
var MessageStopEvent = [3, n0, _MSEe, 0, [_sR, _aMRFd], [0, 15]];
|
|
1370
|
-
var ModelErrorException = [
|
|
1381
|
+
var Message$ = [3, n0, _M, 0, [_ro, _co], [0, [() => ContentBlocks, 0]]];
|
|
1382
|
+
var MessageStartEvent$ = [3, n0, _MSE, 0, [_ro], [0]];
|
|
1383
|
+
var MessageStopEvent$ = [3, n0, _MSEe, 0, [_sR, _aMRFd], [0, 15]];
|
|
1384
|
+
var ModelErrorException$ = [
|
|
1371
1385
|
-3,
|
|
1372
1386
|
n0,
|
|
1373
1387
|
_MEE,
|
|
@@ -1375,10 +1389,10 @@ var ModelErrorException = [
|
|
|
1375
1389
|
[_m, _oSC, _rN],
|
|
1376
1390
|
[0, 1, 0],
|
|
1377
1391
|
];
|
|
1378
|
-
schema.TypeRegistry.for(n0).registerError(ModelErrorException
|
|
1379
|
-
var ModelNotReadyException = [-3, n0, _MNRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1380
|
-
schema.TypeRegistry.for(n0).registerError(ModelNotReadyException
|
|
1381
|
-
var ModelStreamErrorException = [
|
|
1392
|
+
schema.TypeRegistry.for(n0).registerError(ModelErrorException$, ModelErrorException);
|
|
1393
|
+
var ModelNotReadyException$ = [-3, n0, _MNRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1394
|
+
schema.TypeRegistry.for(n0).registerError(ModelNotReadyException$, ModelNotReadyException);
|
|
1395
|
+
var ModelStreamErrorException$ = [
|
|
1382
1396
|
-3,
|
|
1383
1397
|
n0,
|
|
1384
1398
|
_MSEE,
|
|
@@ -1386,48 +1400,48 @@ var ModelStreamErrorException = [
|
|
|
1386
1400
|
[_m, _oSC, _oM],
|
|
1387
1401
|
[0, 1, 0],
|
|
1388
1402
|
];
|
|
1389
|
-
schema.TypeRegistry.for(n0).registerError(ModelStreamErrorException
|
|
1390
|
-
var ModelTimeoutException = [-3, n0, _MTE, { [_e]: _c, [_hE]: 408 }, [_m], [0]];
|
|
1391
|
-
schema.TypeRegistry.for(n0).registerError(ModelTimeoutException
|
|
1392
|
-
var PayloadPart = [3, n0, _PP, 8, [_b], [[() => PartBody, 0]]];
|
|
1393
|
-
var PerformanceConfiguration = [3, n0, _PC, 0, [_la], [0]];
|
|
1394
|
-
var PromptRouterTrace = [3, n0, _PRT, 0, [_iMI], [0]];
|
|
1395
|
-
var ReasoningTextBlock = [3, n0, _RTB, 8, [_te, _si], [0, 0]];
|
|
1396
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1397
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1398
|
-
var S3Location = [3, n0, _SL, 0, [_ur, _bO], [0, 0]];
|
|
1399
|
-
var SearchResultBlock = [
|
|
1403
|
+
schema.TypeRegistry.for(n0).registerError(ModelStreamErrorException$, ModelStreamErrorException);
|
|
1404
|
+
var ModelTimeoutException$ = [-3, n0, _MTE, { [_e]: _c, [_hE]: 408 }, [_m], [0]];
|
|
1405
|
+
schema.TypeRegistry.for(n0).registerError(ModelTimeoutException$, ModelTimeoutException);
|
|
1406
|
+
var PayloadPart$ = [3, n0, _PP, 8, [_b], [[() => PartBody, 0]]];
|
|
1407
|
+
var PerformanceConfiguration$ = [3, n0, _PC, 0, [_la], [0]];
|
|
1408
|
+
var PromptRouterTrace$ = [3, n0, _PRT, 0, [_iMI], [0]];
|
|
1409
|
+
var ReasoningTextBlock$ = [3, n0, _RTB, 8, [_te, _si], [0, 0]];
|
|
1410
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1411
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1412
|
+
var S3Location$ = [3, n0, _SL, 0, [_ur, _bO], [0, 0]];
|
|
1413
|
+
var SearchResultBlock$ = [
|
|
1400
1414
|
3,
|
|
1401
1415
|
n0,
|
|
1402
1416
|
_SRB,
|
|
1403
1417
|
0,
|
|
1404
1418
|
[_s, _ti, _co, _ci],
|
|
1405
|
-
[0, 0, () => SearchResultContentBlocks, () => CitationsConfig],
|
|
1419
|
+
[0, 0, () => SearchResultContentBlocks, () => CitationsConfig$],
|
|
1406
1420
|
];
|
|
1407
|
-
var SearchResultContentBlock = [3, n0, _SRCB, 0, [_te], [0]];
|
|
1408
|
-
var SearchResultLocation = [3, n0, _SRL, 0, [_sRI, _sta, _end], [1, 1, 1]];
|
|
1409
|
-
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1410
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
1411
|
-
var ServiceTier = [3, n0, _ST, 0, [_t], [0]];
|
|
1412
|
-
var ServiceUnavailableException = [-3, n0, _SUE, { [_e]: _se, [_hE]: 503 }, [_m], [0]];
|
|
1413
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException
|
|
1414
|
-
var SpecificToolChoice = [3, n0, _STC, 0, [_n], [0]];
|
|
1415
|
-
var StartAsyncInvokeRequest = [
|
|
1421
|
+
var SearchResultContentBlock$ = [3, n0, _SRCB, 0, [_te], [0]];
|
|
1422
|
+
var SearchResultLocation$ = [3, n0, _SRL, 0, [_sRI, _sta, _end], [1, 1, 1]];
|
|
1423
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1424
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1425
|
+
var ServiceTier$ = [3, n0, _ST, 0, [_t], [0]];
|
|
1426
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _se, [_hE]: 503 }, [_m], [0]];
|
|
1427
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1428
|
+
var SpecificToolChoice$ = [3, n0, _STC, 0, [_n], [0]];
|
|
1429
|
+
var StartAsyncInvokeRequest$ = [
|
|
1416
1430
|
3,
|
|
1417
1431
|
n0,
|
|
1418
1432
|
_SAIR,
|
|
1419
1433
|
0,
|
|
1420
1434
|
[_cRT, _mI, _mIo, _oDC, _ta],
|
|
1421
|
-
[[0, 4], 0, [() => ModelInputPayload, 0], () => AsyncInvokeOutputDataConfig
|
|
1435
|
+
[[0, 4], 0, [() => ModelInputPayload, 0], () => AsyncInvokeOutputDataConfig$, () => TagList],
|
|
1422
1436
|
];
|
|
1423
|
-
var StartAsyncInvokeResponse = [3, n0, _SAIRt, 0, [_iA], [0]];
|
|
1424
|
-
var SystemTool = [3, n0, _STy, 0, [_n], [0]];
|
|
1425
|
-
var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
1426
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1427
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1428
|
-
var TokenUsage = [3, n0, _TU, 0, [_iT, _oT, _tT, _cRIT, _cWIT], [1, 1, 1, 1, 1]];
|
|
1429
|
-
var ToolConfiguration = [3, n0, _TC, 0, [_too, _tCo], [() => Tools, () => ToolChoice]];
|
|
1430
|
-
var ToolResultBlock = [
|
|
1437
|
+
var StartAsyncInvokeResponse$ = [3, n0, _SAIRt, 0, [_iA], [0]];
|
|
1438
|
+
var SystemTool$ = [3, n0, _STy, 0, [_n], [0]];
|
|
1439
|
+
var Tag$ = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
1440
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1441
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1442
|
+
var TokenUsage$ = [3, n0, _TU, 0, [_iT, _oT, _tT, _cRIT, _cWIT], [1, 1, 1, 1, 1]];
|
|
1443
|
+
var ToolConfiguration$ = [3, n0, _TC, 0, [_too, _tCo], [() => Tools, () => ToolChoice$]];
|
|
1444
|
+
var ToolResultBlock$ = [
|
|
1431
1445
|
3,
|
|
1432
1446
|
n0,
|
|
1433
1447
|
_TRB,
|
|
@@ -1435,126 +1449,120 @@ var ToolResultBlock = [
|
|
|
1435
1449
|
[_tUI, _co, _st, _t],
|
|
1436
1450
|
[0, [() => ToolResultContentBlocks, 0], 0, 0],
|
|
1437
1451
|
];
|
|
1438
|
-
var ToolResultBlockStart = [3, n0, _TRBS, 0, [_tUI, _t, _st], [0, 0, 0]];
|
|
1439
|
-
var ToolSpecification = [3, n0, _TS, 0, [_n, _des, _iS], [0, 0, () => ToolInputSchema]];
|
|
1440
|
-
var ToolUseBlock = [3, n0, _TUB, 0, [_tUI, _n, _i, _t], [0, 0, 15, 0]];
|
|
1441
|
-
var ToolUseBlockDelta = [3, n0, _TUBD, 0, [_i], [0]];
|
|
1442
|
-
var ToolUseBlockStart = [3, n0, _TUBS, 0, [_tUI, _n, _t], [0, 0, 0]];
|
|
1443
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1444
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1445
|
-
var VideoBlock = [3, n0, _VB, 0, [_f, _s], [0, () => VideoSource]];
|
|
1446
|
-
var WebLocation = [3, n0, _WL, 0, [_url, _do], [0, 0]];
|
|
1447
|
-
var BedrockRuntimeServiceException = [-3, _sm, "BedrockRuntimeServiceException", 0, [], []];
|
|
1448
|
-
schema.TypeRegistry.for(_sm).registerError(BedrockRuntimeServiceException
|
|
1449
|
-
var AsyncInvokeSummaries = [1, n0, _AISs, 0, [() => AsyncInvokeSummary
|
|
1450
|
-
var CitationGeneratedContentList = [1, n0, _CGCL, 0, () => CitationGeneratedContent];
|
|
1451
|
-
var Citations = [1, n0, _Ci, 0, () => Citation];
|
|
1452
|
-
var CitationSourceContentList = [1, n0, _CSCL, 0, () => CitationSourceContent];
|
|
1453
|
-
var CitationSourceContentListDelta = [1, n0, _CSCLD, 0, () => CitationSourceContentDelta];
|
|
1454
|
-
var ContentBlocks = [1, n0, _CB, 0, [() => ContentBlock
|
|
1455
|
-
var DocumentContentBlocks = [1, n0, _DCB, 0, () => DocumentContentBlock];
|
|
1456
|
-
var GuardrailAssessmentList = [1, n0, _GAL, 0, [() => GuardrailAssessment
|
|
1452
|
+
var ToolResultBlockStart$ = [3, n0, _TRBS, 0, [_tUI, _t, _st], [0, 0, 0]];
|
|
1453
|
+
var ToolSpecification$ = [3, n0, _TS, 0, [_n, _des, _iS], [0, 0, () => ToolInputSchema$]];
|
|
1454
|
+
var ToolUseBlock$ = [3, n0, _TUB, 0, [_tUI, _n, _i, _t], [0, 0, 15, 0]];
|
|
1455
|
+
var ToolUseBlockDelta$ = [3, n0, _TUBD, 0, [_i], [0]];
|
|
1456
|
+
var ToolUseBlockStart$ = [3, n0, _TUBS, 0, [_tUI, _n, _t], [0, 0, 0]];
|
|
1457
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
1458
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1459
|
+
var VideoBlock$ = [3, n0, _VB, 0, [_f, _s], [0, () => VideoSource$]];
|
|
1460
|
+
var WebLocation$ = [3, n0, _WL, 0, [_url, _do], [0, 0]];
|
|
1461
|
+
var BedrockRuntimeServiceException$ = [-3, _sm, "BedrockRuntimeServiceException", 0, [], []];
|
|
1462
|
+
schema.TypeRegistry.for(_sm).registerError(BedrockRuntimeServiceException$, BedrockRuntimeServiceException);
|
|
1463
|
+
var AsyncInvokeSummaries = [1, n0, _AISs, 0, [() => AsyncInvokeSummary$, 0]];
|
|
1464
|
+
var CitationGeneratedContentList = [1, n0, _CGCL, 0, () => CitationGeneratedContent$];
|
|
1465
|
+
var Citations = [1, n0, _Ci, 0, () => Citation$];
|
|
1466
|
+
var CitationSourceContentList = [1, n0, _CSCL, 0, () => CitationSourceContent$];
|
|
1467
|
+
var CitationSourceContentListDelta = [1, n0, _CSCLD, 0, () => CitationSourceContentDelta$];
|
|
1468
|
+
var ContentBlocks = [1, n0, _CB, 0, [() => ContentBlock$, 0]];
|
|
1469
|
+
var DocumentContentBlocks = [1, n0, _DCB, 0, () => DocumentContentBlock$];
|
|
1470
|
+
var GuardrailAssessmentList = [1, n0, _GAL, 0, [() => GuardrailAssessment$, 0]];
|
|
1457
1471
|
var GuardrailAutomatedReasoningDifferenceScenarioList = [
|
|
1458
1472
|
1,
|
|
1459
1473
|
n0,
|
|
1460
1474
|
_GARDSL,
|
|
1461
1475
|
0,
|
|
1462
|
-
[() => GuardrailAutomatedReasoningScenario
|
|
1476
|
+
[() => GuardrailAutomatedReasoningScenario$, 0],
|
|
1463
1477
|
];
|
|
1464
1478
|
var GuardrailAutomatedReasoningFindingList = [
|
|
1465
1479
|
1,
|
|
1466
1480
|
n0,
|
|
1467
1481
|
_GARFL,
|
|
1468
1482
|
0,
|
|
1469
|
-
[() => GuardrailAutomatedReasoningFinding
|
|
1483
|
+
[() => GuardrailAutomatedReasoningFinding$, 0],
|
|
1470
1484
|
];
|
|
1471
1485
|
var GuardrailAutomatedReasoningInputTextReferenceList = [
|
|
1472
1486
|
1,
|
|
1473
1487
|
n0,
|
|
1474
1488
|
_GARITRL,
|
|
1475
1489
|
0,
|
|
1476
|
-
[() => GuardrailAutomatedReasoningInputTextReference
|
|
1477
|
-
];
|
|
1478
|
-
var GuardrailAutomatedReasoningRuleList = [
|
|
1479
|
-
1,
|
|
1480
|
-
n0,
|
|
1481
|
-
_GARRL,
|
|
1482
|
-
0,
|
|
1483
|
-
() => GuardrailAutomatedReasoningRule,
|
|
1490
|
+
[() => GuardrailAutomatedReasoningInputTextReference$, 0],
|
|
1484
1491
|
];
|
|
1492
|
+
var GuardrailAutomatedReasoningRuleList = [1, n0, _GARRL, 0, () => GuardrailAutomatedReasoningRule$];
|
|
1485
1493
|
var GuardrailAutomatedReasoningStatementList = [
|
|
1486
1494
|
1,
|
|
1487
1495
|
n0,
|
|
1488
1496
|
_GARSL,
|
|
1489
1497
|
0,
|
|
1490
|
-
[() => GuardrailAutomatedReasoningStatement
|
|
1498
|
+
[() => GuardrailAutomatedReasoningStatement$, 0],
|
|
1491
1499
|
];
|
|
1492
1500
|
var GuardrailAutomatedReasoningTranslationList = [
|
|
1493
1501
|
1,
|
|
1494
1502
|
n0,
|
|
1495
1503
|
_GARTL,
|
|
1496
1504
|
0,
|
|
1497
|
-
[() => GuardrailAutomatedReasoningTranslation
|
|
1505
|
+
[() => GuardrailAutomatedReasoningTranslation$, 0],
|
|
1498
1506
|
];
|
|
1499
1507
|
var GuardrailAutomatedReasoningTranslationOptionList = [
|
|
1500
1508
|
1,
|
|
1501
1509
|
n0,
|
|
1502
1510
|
_GARTOL,
|
|
1503
1511
|
0,
|
|
1504
|
-
[() => GuardrailAutomatedReasoningTranslationOption
|
|
1512
|
+
[() => GuardrailAutomatedReasoningTranslationOption$, 0],
|
|
1505
1513
|
];
|
|
1506
|
-
var GuardrailContentBlockList = [1, n0, _GCBL, 0, [() => GuardrailContentBlock
|
|
1507
|
-
var GuardrailContentFilterList = [1, n0, _GCFL, 0, () => GuardrailContentFilter];
|
|
1514
|
+
var GuardrailContentBlockList = [1, n0, _GCBL, 0, [() => GuardrailContentBlock$, 0]];
|
|
1515
|
+
var GuardrailContentFilterList = [1, n0, _GCFL, 0, () => GuardrailContentFilter$];
|
|
1508
1516
|
var GuardrailContextualGroundingFilters = [
|
|
1509
1517
|
1,
|
|
1510
1518
|
n0,
|
|
1511
1519
|
_GCGFu,
|
|
1512
1520
|
0,
|
|
1513
|
-
() => GuardrailContextualGroundingFilter
|
|
1514
|
-
];
|
|
1515
|
-
var GuardrailCustomWordList = [1, n0, _GCWL, 0, () => GuardrailCustomWord];
|
|
1516
|
-
var GuardrailManagedWordList = [1, n0, _GMWL, 0, () => GuardrailManagedWord];
|
|
1517
|
-
var GuardrailOutputContentList = [1, n0, _GOCL, 0, () => GuardrailOutputContent];
|
|
1518
|
-
var GuardrailPiiEntityFilterList = [1, n0, _GPEFL, 0, () => GuardrailPiiEntityFilter];
|
|
1519
|
-
var GuardrailRegexFilterList = [1, n0, _GRFL, 0, () => GuardrailRegexFilter];
|
|
1520
|
-
var GuardrailTopicList = [1, n0, _GTL, 0, () => GuardrailTopic];
|
|
1521
|
-
var Messages = [1, n0, _Me, 0, [() => Message
|
|
1522
|
-
var SearchResultContentBlocks = [1, n0, _SRCBe, 0, () => SearchResultContentBlock];
|
|
1523
|
-
var SystemContentBlocks = [1, n0, _SCB, 0, [() => SystemContentBlock
|
|
1524
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1525
|
-
var ToolResultBlocksDelta = [1, n0, _TRBD, 0, () => ToolResultBlockDelta];
|
|
1526
|
-
var ToolResultContentBlocks = [1, n0, _TRCB, 0, [() => ToolResultContentBlock
|
|
1527
|
-
var Tools = [1, n0, _To, 0, () => Tool];
|
|
1521
|
+
() => GuardrailContextualGroundingFilter$,
|
|
1522
|
+
];
|
|
1523
|
+
var GuardrailCustomWordList = [1, n0, _GCWL, 0, () => GuardrailCustomWord$];
|
|
1524
|
+
var GuardrailManagedWordList = [1, n0, _GMWL, 0, () => GuardrailManagedWord$];
|
|
1525
|
+
var GuardrailOutputContentList = [1, n0, _GOCL, 0, () => GuardrailOutputContent$];
|
|
1526
|
+
var GuardrailPiiEntityFilterList = [1, n0, _GPEFL, 0, () => GuardrailPiiEntityFilter$];
|
|
1527
|
+
var GuardrailRegexFilterList = [1, n0, _GRFL, 0, () => GuardrailRegexFilter$];
|
|
1528
|
+
var GuardrailTopicList = [1, n0, _GTL, 0, () => GuardrailTopic$];
|
|
1529
|
+
var Messages = [1, n0, _Me, 0, [() => Message$, 0]];
|
|
1530
|
+
var SearchResultContentBlocks = [1, n0, _SRCBe, 0, () => SearchResultContentBlock$];
|
|
1531
|
+
var SystemContentBlocks = [1, n0, _SCB, 0, [() => SystemContentBlock$, 0]];
|
|
1532
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
1533
|
+
var ToolResultBlocksDelta = [1, n0, _TRBD, 0, () => ToolResultBlockDelta$];
|
|
1534
|
+
var ToolResultContentBlocks = [1, n0, _TRCB, 0, [() => ToolResultContentBlock$, 0]];
|
|
1535
|
+
var Tools = [1, n0, _To, 0, () => Tool$];
|
|
1528
1536
|
var GuardrailAssessmentListMap = [2, n0, _GALM, 0, [0, 0], [() => GuardrailAssessmentList, 0]];
|
|
1529
|
-
var GuardrailAssessmentMap = [2, n0, _GAM, 0, [0, 0], [() => GuardrailAssessment
|
|
1530
|
-
var PromptVariableMap = [2, n0, _PVM, 8, 0, () => PromptVariableValues];
|
|
1537
|
+
var GuardrailAssessmentMap = [2, n0, _GAM, 0, [0, 0], [() => GuardrailAssessment$, 0]];
|
|
1538
|
+
var PromptVariableMap = [2, n0, _PVM, 8, 0, () => PromptVariableValues$];
|
|
1531
1539
|
var RequestMetadata = [2, n0, _RM, 8, 0, 0];
|
|
1532
|
-
var AsyncInvokeOutputDataConfig = [
|
|
1540
|
+
var AsyncInvokeOutputDataConfig$ = [
|
|
1533
1541
|
3,
|
|
1534
1542
|
n0,
|
|
1535
1543
|
_AIODC,
|
|
1536
1544
|
0,
|
|
1537
1545
|
[_sODC],
|
|
1538
|
-
[() => AsyncInvokeS3OutputDataConfig],
|
|
1546
|
+
[() => AsyncInvokeS3OutputDataConfig$],
|
|
1539
1547
|
];
|
|
1540
|
-
var AudioSource = [3, n0, _AS, 8, [_b, _sL], [21, () => S3Location]];
|
|
1541
|
-
var CitationGeneratedContent = [3, n0, _CGC, 0, [_te], [0]];
|
|
1542
|
-
var CitationLocation = [
|
|
1548
|
+
var AudioSource$ = [3, n0, _AS, 8, [_b, _sL], [21, () => S3Location$]];
|
|
1549
|
+
var CitationGeneratedContent$ = [3, n0, _CGC, 0, [_te], [0]];
|
|
1550
|
+
var CitationLocation$ = [
|
|
1543
1551
|
3,
|
|
1544
1552
|
n0,
|
|
1545
1553
|
_CL,
|
|
1546
1554
|
0,
|
|
1547
1555
|
[_w, _dC, _dP, _dCo, _sRL],
|
|
1548
1556
|
[
|
|
1549
|
-
() => WebLocation
|
|
1550
|
-
() => DocumentCharLocation
|
|
1551
|
-
() => DocumentPageLocation
|
|
1552
|
-
() => DocumentChunkLocation
|
|
1553
|
-
() => SearchResultLocation
|
|
1557
|
+
() => WebLocation$,
|
|
1558
|
+
() => DocumentCharLocation$,
|
|
1559
|
+
() => DocumentPageLocation$,
|
|
1560
|
+
() => DocumentChunkLocation$,
|
|
1561
|
+
() => SearchResultLocation$,
|
|
1554
1562
|
],
|
|
1555
1563
|
];
|
|
1556
|
-
var CitationSourceContent = [3, n0, _CSC, 0, [_te], [0]];
|
|
1557
|
-
var ContentBlock = [
|
|
1564
|
+
var CitationSourceContent$ = [3, n0, _CSC, 0, [_te], [0]];
|
|
1565
|
+
var ContentBlock$ = [
|
|
1558
1566
|
3,
|
|
1559
1567
|
n0,
|
|
1560
1568
|
_CBo,
|
|
@@ -1562,20 +1570,20 @@ var ContentBlock = [
|
|
|
1562
1570
|
[_te, _ima, _doc, _vi, _au, _tU, _tR, _gCua, _cPa, _rC, _cC, _sRe],
|
|
1563
1571
|
[
|
|
1564
1572
|
0,
|
|
1565
|
-
[() => ImageBlock
|
|
1566
|
-
() => DocumentBlock
|
|
1567
|
-
() => VideoBlock
|
|
1568
|
-
[() => AudioBlock
|
|
1569
|
-
() => ToolUseBlock
|
|
1570
|
-
[() => ToolResultBlock
|
|
1571
|
-
[() => GuardrailConverseContentBlock
|
|
1572
|
-
() => CachePointBlock
|
|
1573
|
-
[() => ReasoningContentBlock
|
|
1574
|
-
() => CitationsContentBlock
|
|
1575
|
-
() => SearchResultBlock
|
|
1573
|
+
[() => ImageBlock$, 0],
|
|
1574
|
+
() => DocumentBlock$,
|
|
1575
|
+
() => VideoBlock$,
|
|
1576
|
+
[() => AudioBlock$, 0],
|
|
1577
|
+
() => ToolUseBlock$,
|
|
1578
|
+
[() => ToolResultBlock$, 0],
|
|
1579
|
+
[() => GuardrailConverseContentBlock$, 0],
|
|
1580
|
+
() => CachePointBlock$,
|
|
1581
|
+
[() => ReasoningContentBlock$, 0],
|
|
1582
|
+
() => CitationsContentBlock$,
|
|
1583
|
+
() => SearchResultBlock$,
|
|
1576
1584
|
],
|
|
1577
1585
|
];
|
|
1578
|
-
var ContentBlockDelta = [
|
|
1586
|
+
var ContentBlockDelta$ = [
|
|
1579
1587
|
3,
|
|
1580
1588
|
n0,
|
|
1581
1589
|
_CBD,
|
|
@@ -1583,261 +1591,261 @@ var ContentBlockDelta = [
|
|
|
1583
1591
|
[_te, _tU, _tR, _rC, _cit, _ima],
|
|
1584
1592
|
[
|
|
1585
1593
|
0,
|
|
1586
|
-
() => ToolUseBlockDelta
|
|
1594
|
+
() => ToolUseBlockDelta$,
|
|
1587
1595
|
() => ToolResultBlocksDelta,
|
|
1588
|
-
[() => ReasoningContentBlockDelta
|
|
1589
|
-
() => CitationsDelta
|
|
1590
|
-
[() => ImageBlockDelta
|
|
1596
|
+
[() => ReasoningContentBlockDelta$, 0],
|
|
1597
|
+
() => CitationsDelta$,
|
|
1598
|
+
[() => ImageBlockDelta$, 0],
|
|
1591
1599
|
],
|
|
1592
1600
|
];
|
|
1593
|
-
var ContentBlockStart = [
|
|
1601
|
+
var ContentBlockStart$ = [
|
|
1594
1602
|
3,
|
|
1595
1603
|
n0,
|
|
1596
1604
|
_CBS,
|
|
1597
1605
|
0,
|
|
1598
1606
|
[_tU, _tR, _ima],
|
|
1599
|
-
[() => ToolUseBlockStart
|
|
1607
|
+
[() => ToolUseBlockStart$, () => ToolResultBlockStart$, () => ImageBlockStart$],
|
|
1600
1608
|
];
|
|
1601
|
-
var ConverseOutput = [3, n0, _CO, 0, [_m], [[() => Message
|
|
1602
|
-
var ConverseStreamOutput = [
|
|
1609
|
+
var ConverseOutput$ = [3, n0, _CO, 0, [_m], [[() => Message$, 0]]];
|
|
1610
|
+
var ConverseStreamOutput$ = [
|
|
1603
1611
|
3,
|
|
1604
1612
|
n0,
|
|
1605
1613
|
_CSO,
|
|
1606
1614
|
{ [_stre]: 1 },
|
|
1607
1615
|
[_mS, _cBS, _cBD, _cBSo, _mSe, _meta, _iSE, _mSEE, _vE, _tE, _sUE],
|
|
1608
1616
|
[
|
|
1609
|
-
() => MessageStartEvent
|
|
1610
|
-
() => ContentBlockStartEvent
|
|
1611
|
-
[() => ContentBlockDeltaEvent
|
|
1612
|
-
() => ContentBlockStopEvent
|
|
1613
|
-
() => MessageStopEvent
|
|
1614
|
-
[() => ConverseStreamMetadataEvent
|
|
1615
|
-
[() => InternalServerException
|
|
1616
|
-
[() => ModelStreamErrorException
|
|
1617
|
-
[() => ValidationException
|
|
1618
|
-
[() => ThrottlingException
|
|
1619
|
-
[() => ServiceUnavailableException
|
|
1617
|
+
() => MessageStartEvent$,
|
|
1618
|
+
() => ContentBlockStartEvent$,
|
|
1619
|
+
[() => ContentBlockDeltaEvent$, 0],
|
|
1620
|
+
() => ContentBlockStopEvent$,
|
|
1621
|
+
() => MessageStopEvent$,
|
|
1622
|
+
[() => ConverseStreamMetadataEvent$, 0],
|
|
1623
|
+
[() => InternalServerException$, 0],
|
|
1624
|
+
[() => ModelStreamErrorException$, 0],
|
|
1625
|
+
[() => ValidationException$, 0],
|
|
1626
|
+
[() => ThrottlingException$, 0],
|
|
1627
|
+
[() => ServiceUnavailableException$, 0],
|
|
1620
1628
|
],
|
|
1621
1629
|
];
|
|
1622
|
-
var CountTokensInput = [
|
|
1630
|
+
var CountTokensInput$ = [
|
|
1623
1631
|
3,
|
|
1624
1632
|
n0,
|
|
1625
1633
|
_CTI,
|
|
1626
1634
|
0,
|
|
1627
1635
|
[_iMn, _conv],
|
|
1628
1636
|
[
|
|
1629
|
-
[() => InvokeModelTokensRequest
|
|
1630
|
-
[() => ConverseTokensRequest
|
|
1637
|
+
[() => InvokeModelTokensRequest$, 0],
|
|
1638
|
+
[() => ConverseTokensRequest$, 0],
|
|
1631
1639
|
],
|
|
1632
1640
|
];
|
|
1633
|
-
var DocumentContentBlock = [3, n0, _DCBo, 0, [_te], [0]];
|
|
1634
|
-
var DocumentSource = [
|
|
1641
|
+
var DocumentContentBlock$ = [3, n0, _DCBo, 0, [_te], [0]];
|
|
1642
|
+
var DocumentSource$ = [
|
|
1635
1643
|
3,
|
|
1636
1644
|
n0,
|
|
1637
1645
|
_DS,
|
|
1638
1646
|
0,
|
|
1639
1647
|
[_b, _sL, _te, _co],
|
|
1640
|
-
[21, () => S3Location
|
|
1648
|
+
[21, () => S3Location$, 0, () => DocumentContentBlocks],
|
|
1641
1649
|
];
|
|
1642
|
-
var GuardrailAutomatedReasoningFinding = [
|
|
1650
|
+
var GuardrailAutomatedReasoningFinding$ = [
|
|
1643
1651
|
3,
|
|
1644
1652
|
n0,
|
|
1645
1653
|
_GARF,
|
|
1646
1654
|
0,
|
|
1647
1655
|
[_va, _in, _sa, _imp, _tA, _tCoo, _nTo],
|
|
1648
1656
|
[
|
|
1649
|
-
[() => GuardrailAutomatedReasoningValidFinding
|
|
1650
|
-
[() => GuardrailAutomatedReasoningInvalidFinding
|
|
1651
|
-
[() => GuardrailAutomatedReasoningSatisfiableFinding
|
|
1652
|
-
[() => GuardrailAutomatedReasoningImpossibleFinding
|
|
1653
|
-
[() => GuardrailAutomatedReasoningTranslationAmbiguousFinding
|
|
1654
|
-
() => GuardrailAutomatedReasoningTooComplexFinding
|
|
1655
|
-
() => GuardrailAutomatedReasoningNoTranslationsFinding
|
|
1657
|
+
[() => GuardrailAutomatedReasoningValidFinding$, 0],
|
|
1658
|
+
[() => GuardrailAutomatedReasoningInvalidFinding$, 0],
|
|
1659
|
+
[() => GuardrailAutomatedReasoningSatisfiableFinding$, 0],
|
|
1660
|
+
[() => GuardrailAutomatedReasoningImpossibleFinding$, 0],
|
|
1661
|
+
[() => GuardrailAutomatedReasoningTranslationAmbiguousFinding$, 0],
|
|
1662
|
+
() => GuardrailAutomatedReasoningTooComplexFinding$,
|
|
1663
|
+
() => GuardrailAutomatedReasoningNoTranslationsFinding$,
|
|
1656
1664
|
],
|
|
1657
1665
|
];
|
|
1658
|
-
var GuardrailContentBlock = [
|
|
1666
|
+
var GuardrailContentBlock$ = [
|
|
1659
1667
|
3,
|
|
1660
1668
|
n0,
|
|
1661
1669
|
_GCB,
|
|
1662
1670
|
0,
|
|
1663
1671
|
[_te, _ima],
|
|
1664
|
-
[() => GuardrailTextBlock
|
|
1672
|
+
[() => GuardrailTextBlock$, [() => GuardrailImageBlock$, 0]],
|
|
1665
1673
|
];
|
|
1666
|
-
var GuardrailConverseContentBlock = [
|
|
1674
|
+
var GuardrailConverseContentBlock$ = [
|
|
1667
1675
|
3,
|
|
1668
1676
|
n0,
|
|
1669
1677
|
_GCCB,
|
|
1670
1678
|
0,
|
|
1671
1679
|
[_te, _ima],
|
|
1672
|
-
[() => GuardrailConverseTextBlock
|
|
1680
|
+
[() => GuardrailConverseTextBlock$, [() => GuardrailConverseImageBlock$, 0]],
|
|
1673
1681
|
];
|
|
1674
|
-
var GuardrailConverseImageSource = [3, n0, _GCIS, 8, [_b], [21]];
|
|
1675
|
-
var GuardrailImageSource = [3, n0, _GIS, 8, [_b], [21]];
|
|
1676
|
-
var ImageSource = [3, n0, _IS, 8, [_b, _sL], [21, () => S3Location]];
|
|
1677
|
-
var InvokeModelWithBidirectionalStreamInput = [
|
|
1682
|
+
var GuardrailConverseImageSource$ = [3, n0, _GCIS, 8, [_b], [21]];
|
|
1683
|
+
var GuardrailImageSource$ = [3, n0, _GIS, 8, [_b], [21]];
|
|
1684
|
+
var ImageSource$ = [3, n0, _IS, 8, [_b, _sL], [21, () => S3Location$]];
|
|
1685
|
+
var InvokeModelWithBidirectionalStreamInput$ = [
|
|
1678
1686
|
3,
|
|
1679
1687
|
n0,
|
|
1680
1688
|
_IMWBSI,
|
|
1681
1689
|
{ [_stre]: 1 },
|
|
1682
1690
|
[_ch],
|
|
1683
|
-
[[() => BidirectionalInputPayloadPart
|
|
1691
|
+
[[() => BidirectionalInputPayloadPart$, 0]],
|
|
1684
1692
|
];
|
|
1685
|
-
var InvokeModelWithBidirectionalStreamOutput = [
|
|
1693
|
+
var InvokeModelWithBidirectionalStreamOutput$ = [
|
|
1686
1694
|
3,
|
|
1687
1695
|
n0,
|
|
1688
1696
|
_IMWBSO,
|
|
1689
1697
|
{ [_stre]: 1 },
|
|
1690
1698
|
[_ch, _iSE, _mSEE, _vE, _tE, _mTE, _sUE],
|
|
1691
1699
|
[
|
|
1692
|
-
[() => BidirectionalOutputPayloadPart
|
|
1693
|
-
[() => InternalServerException
|
|
1694
|
-
[() => ModelStreamErrorException
|
|
1695
|
-
[() => ValidationException
|
|
1696
|
-
[() => ThrottlingException
|
|
1697
|
-
[() => ModelTimeoutException
|
|
1698
|
-
[() => ServiceUnavailableException
|
|
1700
|
+
[() => BidirectionalOutputPayloadPart$, 0],
|
|
1701
|
+
[() => InternalServerException$, 0],
|
|
1702
|
+
[() => ModelStreamErrorException$, 0],
|
|
1703
|
+
[() => ValidationException$, 0],
|
|
1704
|
+
[() => ThrottlingException$, 0],
|
|
1705
|
+
[() => ModelTimeoutException$, 0],
|
|
1706
|
+
[() => ServiceUnavailableException$, 0],
|
|
1699
1707
|
],
|
|
1700
1708
|
];
|
|
1701
|
-
var PromptVariableValues = [3, n0, _PVV, 0, [_te], [0]];
|
|
1702
|
-
var ReasoningContentBlock = [
|
|
1709
|
+
var PromptVariableValues$ = [3, n0, _PVV, 0, [_te], [0]];
|
|
1710
|
+
var ReasoningContentBlock$ = [
|
|
1703
1711
|
3,
|
|
1704
1712
|
n0,
|
|
1705
1713
|
_RCB,
|
|
1706
1714
|
8,
|
|
1707
1715
|
[_rT, _rCe],
|
|
1708
|
-
[[() => ReasoningTextBlock
|
|
1716
|
+
[[() => ReasoningTextBlock$, 0], 21],
|
|
1709
1717
|
];
|
|
1710
|
-
var ReasoningContentBlockDelta = [3, n0, _RCBD, 8, [_te, _rCe, _si], [0, 21, 0]];
|
|
1711
|
-
var ResponseStream = [
|
|
1718
|
+
var ReasoningContentBlockDelta$ = [3, n0, _RCBD, 8, [_te, _rCe, _si], [0, 21, 0]];
|
|
1719
|
+
var ResponseStream$ = [
|
|
1712
1720
|
3,
|
|
1713
1721
|
n0,
|
|
1714
1722
|
_RS,
|
|
1715
1723
|
{ [_stre]: 1 },
|
|
1716
1724
|
[_ch, _iSE, _mSEE, _vE, _tE, _mTE, _sUE],
|
|
1717
1725
|
[
|
|
1718
|
-
[() => PayloadPart
|
|
1719
|
-
[() => InternalServerException
|
|
1720
|
-
[() => ModelStreamErrorException
|
|
1721
|
-
[() => ValidationException
|
|
1722
|
-
[() => ThrottlingException
|
|
1723
|
-
[() => ModelTimeoutException
|
|
1724
|
-
[() => ServiceUnavailableException
|
|
1726
|
+
[() => PayloadPart$, 0],
|
|
1727
|
+
[() => InternalServerException$, 0],
|
|
1728
|
+
[() => ModelStreamErrorException$, 0],
|
|
1729
|
+
[() => ValidationException$, 0],
|
|
1730
|
+
[() => ThrottlingException$, 0],
|
|
1731
|
+
[() => ModelTimeoutException$, 0],
|
|
1732
|
+
[() => ServiceUnavailableException$, 0],
|
|
1725
1733
|
],
|
|
1726
1734
|
];
|
|
1727
|
-
var SystemContentBlock = [
|
|
1735
|
+
var SystemContentBlock$ = [
|
|
1728
1736
|
3,
|
|
1729
1737
|
n0,
|
|
1730
1738
|
_SCBy,
|
|
1731
1739
|
0,
|
|
1732
1740
|
[_te, _gCua, _cPa],
|
|
1733
|
-
[0, [() => GuardrailConverseContentBlock
|
|
1741
|
+
[0, [() => GuardrailConverseContentBlock$, 0], () => CachePointBlock$],
|
|
1734
1742
|
];
|
|
1735
|
-
var Tool = [
|
|
1743
|
+
var Tool$ = [
|
|
1736
1744
|
3,
|
|
1737
1745
|
n0,
|
|
1738
1746
|
_Too,
|
|
1739
1747
|
0,
|
|
1740
1748
|
[_tS, _sTy, _cPa],
|
|
1741
|
-
[() => ToolSpecification
|
|
1749
|
+
[() => ToolSpecification$, () => SystemTool$, () => CachePointBlock$],
|
|
1742
1750
|
];
|
|
1743
|
-
var ToolChoice = [
|
|
1751
|
+
var ToolChoice$ = [
|
|
1744
1752
|
3,
|
|
1745
1753
|
n0,
|
|
1746
1754
|
_TCo,
|
|
1747
1755
|
0,
|
|
1748
1756
|
[_aut, _an, _tool],
|
|
1749
|
-
[() => AutoToolChoice
|
|
1757
|
+
[() => AutoToolChoice$, () => AnyToolChoice$, () => SpecificToolChoice$],
|
|
1750
1758
|
];
|
|
1751
|
-
var ToolInputSchema = [3, n0, _TIS, 0, [_j], [15]];
|
|
1752
|
-
var ToolResultBlockDelta = [3, n0, _TRBDo, 0, [_te, _j], [0, 15]];
|
|
1753
|
-
var ToolResultContentBlock = [
|
|
1759
|
+
var ToolInputSchema$ = [3, n0, _TIS, 0, [_j], [15]];
|
|
1760
|
+
var ToolResultBlockDelta$ = [3, n0, _TRBDo, 0, [_te, _j], [0, 15]];
|
|
1761
|
+
var ToolResultContentBlock$ = [
|
|
1754
1762
|
3,
|
|
1755
1763
|
n0,
|
|
1756
1764
|
_TRCBo,
|
|
1757
1765
|
0,
|
|
1758
1766
|
[_j, _te, _ima, _doc, _vi, _sRe],
|
|
1759
|
-
[15, 0, [() => ImageBlock
|
|
1767
|
+
[15, 0, [() => ImageBlock$, 0], () => DocumentBlock$, () => VideoBlock$, () => SearchResultBlock$],
|
|
1760
1768
|
];
|
|
1761
|
-
var VideoSource = [3, n0, _VS, 0, [_b, _sL], [21, () => S3Location]];
|
|
1762
|
-
var ApplyGuardrail = [
|
|
1769
|
+
var VideoSource$ = [3, n0, _VS, 0, [_b, _sL], [21, () => S3Location$]];
|
|
1770
|
+
var ApplyGuardrail$ = [
|
|
1763
1771
|
9,
|
|
1764
1772
|
n0,
|
|
1765
1773
|
_AG,
|
|
1766
1774
|
{ [_h]: ["POST", "/guardrail/{guardrailIdentifier}/version/{guardrailVersion}/apply", 200] },
|
|
1767
|
-
() => ApplyGuardrailRequest
|
|
1768
|
-
() => ApplyGuardrailResponse
|
|
1775
|
+
() => ApplyGuardrailRequest$,
|
|
1776
|
+
() => ApplyGuardrailResponse$,
|
|
1769
1777
|
];
|
|
1770
|
-
var Converse = [
|
|
1778
|
+
var Converse$ = [
|
|
1771
1779
|
9,
|
|
1772
1780
|
n0,
|
|
1773
1781
|
_Co,
|
|
1774
1782
|
{ [_h]: ["POST", "/model/{modelId}/converse", 200] },
|
|
1775
|
-
() => ConverseRequest
|
|
1776
|
-
() => ConverseResponse
|
|
1783
|
+
() => ConverseRequest$,
|
|
1784
|
+
() => ConverseResponse$,
|
|
1777
1785
|
];
|
|
1778
|
-
var ConverseStream = [
|
|
1786
|
+
var ConverseStream$ = [
|
|
1779
1787
|
9,
|
|
1780
1788
|
n0,
|
|
1781
1789
|
_CS,
|
|
1782
1790
|
{ [_h]: ["POST", "/model/{modelId}/converse-stream", 200] },
|
|
1783
|
-
() => ConverseStreamRequest
|
|
1784
|
-
() => ConverseStreamResponse
|
|
1791
|
+
() => ConverseStreamRequest$,
|
|
1792
|
+
() => ConverseStreamResponse$,
|
|
1785
1793
|
];
|
|
1786
|
-
var CountTokens = [
|
|
1794
|
+
var CountTokens$ = [
|
|
1787
1795
|
9,
|
|
1788
1796
|
n0,
|
|
1789
1797
|
_CTo,
|
|
1790
1798
|
{ [_h]: ["POST", "/model/{modelId}/count-tokens", 200] },
|
|
1791
|
-
() => CountTokensRequest
|
|
1792
|
-
() => CountTokensResponse
|
|
1799
|
+
() => CountTokensRequest$,
|
|
1800
|
+
() => CountTokensResponse$,
|
|
1793
1801
|
];
|
|
1794
|
-
var GetAsyncInvoke = [
|
|
1802
|
+
var GetAsyncInvoke$ = [
|
|
1795
1803
|
9,
|
|
1796
1804
|
n0,
|
|
1797
1805
|
_GAI,
|
|
1798
1806
|
{ [_h]: ["GET", "/async-invoke/{invocationArn}", 200] },
|
|
1799
|
-
() => GetAsyncInvokeRequest
|
|
1800
|
-
() => GetAsyncInvokeResponse
|
|
1807
|
+
() => GetAsyncInvokeRequest$,
|
|
1808
|
+
() => GetAsyncInvokeResponse$,
|
|
1801
1809
|
];
|
|
1802
|
-
var InvokeModel = [
|
|
1810
|
+
var InvokeModel$ = [
|
|
1803
1811
|
9,
|
|
1804
1812
|
n0,
|
|
1805
1813
|
_IM,
|
|
1806
1814
|
{ [_h]: ["POST", "/model/{modelId}/invoke", 200] },
|
|
1807
|
-
() => InvokeModelRequest
|
|
1808
|
-
() => InvokeModelResponse
|
|
1815
|
+
() => InvokeModelRequest$,
|
|
1816
|
+
() => InvokeModelResponse$,
|
|
1809
1817
|
];
|
|
1810
|
-
var InvokeModelWithBidirectionalStream = [
|
|
1818
|
+
var InvokeModelWithBidirectionalStream$ = [
|
|
1811
1819
|
9,
|
|
1812
1820
|
n0,
|
|
1813
1821
|
_IMWBS,
|
|
1814
1822
|
{ [_h]: ["POST", "/model/{modelId}/invoke-with-bidirectional-stream", 200] },
|
|
1815
|
-
() => InvokeModelWithBidirectionalStreamRequest
|
|
1816
|
-
() => InvokeModelWithBidirectionalStreamResponse
|
|
1823
|
+
() => InvokeModelWithBidirectionalStreamRequest$,
|
|
1824
|
+
() => InvokeModelWithBidirectionalStreamResponse$,
|
|
1817
1825
|
];
|
|
1818
|
-
var InvokeModelWithResponseStream = [
|
|
1826
|
+
var InvokeModelWithResponseStream$ = [
|
|
1819
1827
|
9,
|
|
1820
1828
|
n0,
|
|
1821
1829
|
_IMWRS,
|
|
1822
1830
|
{ [_h]: ["POST", "/model/{modelId}/invoke-with-response-stream", 200] },
|
|
1823
|
-
() => InvokeModelWithResponseStreamRequest
|
|
1824
|
-
() => InvokeModelWithResponseStreamResponse
|
|
1831
|
+
() => InvokeModelWithResponseStreamRequest$,
|
|
1832
|
+
() => InvokeModelWithResponseStreamResponse$,
|
|
1825
1833
|
];
|
|
1826
|
-
var ListAsyncInvokes = [
|
|
1834
|
+
var ListAsyncInvokes$ = [
|
|
1827
1835
|
9,
|
|
1828
1836
|
n0,
|
|
1829
1837
|
_LAI,
|
|
1830
1838
|
{ [_h]: ["GET", "/async-invoke", 200] },
|
|
1831
|
-
() => ListAsyncInvokesRequest
|
|
1832
|
-
() => ListAsyncInvokesResponse
|
|
1839
|
+
() => ListAsyncInvokesRequest$,
|
|
1840
|
+
() => ListAsyncInvokesResponse$,
|
|
1833
1841
|
];
|
|
1834
|
-
var StartAsyncInvoke = [
|
|
1842
|
+
var StartAsyncInvoke$ = [
|
|
1835
1843
|
9,
|
|
1836
1844
|
n0,
|
|
1837
1845
|
_SAI,
|
|
1838
1846
|
{ [_h]: ["POST", "/async-invoke", 200] },
|
|
1839
|
-
() => StartAsyncInvokeRequest
|
|
1840
|
-
() => StartAsyncInvokeResponse
|
|
1847
|
+
() => StartAsyncInvokeRequest$,
|
|
1848
|
+
() => StartAsyncInvokeResponse$,
|
|
1841
1849
|
];
|
|
1842
1850
|
|
|
1843
1851
|
class ApplyGuardrailCommand extends smithyClient.Command
|
|
@@ -1848,7 +1856,7 @@ class ApplyGuardrailCommand extends smithyClient.Command
|
|
|
1848
1856
|
})
|
|
1849
1857
|
.s("AmazonBedrockFrontendService", "ApplyGuardrail", {})
|
|
1850
1858
|
.n("BedrockRuntimeClient", "ApplyGuardrailCommand")
|
|
1851
|
-
.sc(ApplyGuardrail)
|
|
1859
|
+
.sc(ApplyGuardrail$)
|
|
1852
1860
|
.build() {
|
|
1853
1861
|
}
|
|
1854
1862
|
|
|
@@ -1860,7 +1868,7 @@ class ConverseCommand extends smithyClient.Command
|
|
|
1860
1868
|
})
|
|
1861
1869
|
.s("AmazonBedrockFrontendService", "Converse", {})
|
|
1862
1870
|
.n("BedrockRuntimeClient", "ConverseCommand")
|
|
1863
|
-
.sc(Converse)
|
|
1871
|
+
.sc(Converse$)
|
|
1864
1872
|
.build() {
|
|
1865
1873
|
}
|
|
1866
1874
|
|
|
@@ -1876,7 +1884,7 @@ class ConverseStreamCommand extends smithyClient.Command
|
|
|
1876
1884
|
},
|
|
1877
1885
|
})
|
|
1878
1886
|
.n("BedrockRuntimeClient", "ConverseStreamCommand")
|
|
1879
|
-
.sc(ConverseStream)
|
|
1887
|
+
.sc(ConverseStream$)
|
|
1880
1888
|
.build() {
|
|
1881
1889
|
}
|
|
1882
1890
|
|
|
@@ -1888,7 +1896,7 @@ class CountTokensCommand extends smithyClient.Command
|
|
|
1888
1896
|
})
|
|
1889
1897
|
.s("AmazonBedrockFrontendService", "CountTokens", {})
|
|
1890
1898
|
.n("BedrockRuntimeClient", "CountTokensCommand")
|
|
1891
|
-
.sc(CountTokens)
|
|
1899
|
+
.sc(CountTokens$)
|
|
1892
1900
|
.build() {
|
|
1893
1901
|
}
|
|
1894
1902
|
|
|
@@ -1900,7 +1908,7 @@ class GetAsyncInvokeCommand extends smithyClient.Command
|
|
|
1900
1908
|
})
|
|
1901
1909
|
.s("AmazonBedrockFrontendService", "GetAsyncInvoke", {})
|
|
1902
1910
|
.n("BedrockRuntimeClient", "GetAsyncInvokeCommand")
|
|
1903
|
-
.sc(GetAsyncInvoke)
|
|
1911
|
+
.sc(GetAsyncInvoke$)
|
|
1904
1912
|
.build() {
|
|
1905
1913
|
}
|
|
1906
1914
|
|
|
@@ -1912,7 +1920,7 @@ class InvokeModelCommand extends smithyClient.Command
|
|
|
1912
1920
|
})
|
|
1913
1921
|
.s("AmazonBedrockFrontendService", "InvokeModel", {})
|
|
1914
1922
|
.n("BedrockRuntimeClient", "InvokeModelCommand")
|
|
1915
|
-
.sc(InvokeModel)
|
|
1923
|
+
.sc(InvokeModel$)
|
|
1916
1924
|
.build() {
|
|
1917
1925
|
}
|
|
1918
1926
|
|
|
@@ -1935,7 +1943,7 @@ class InvokeModelWithBidirectionalStreamCommand extends smithyClient.Command
|
|
|
1935
1943
|
},
|
|
1936
1944
|
})
|
|
1937
1945
|
.n("BedrockRuntimeClient", "InvokeModelWithBidirectionalStreamCommand")
|
|
1938
|
-
.sc(InvokeModelWithBidirectionalStream)
|
|
1946
|
+
.sc(InvokeModelWithBidirectionalStream$)
|
|
1939
1947
|
.build() {
|
|
1940
1948
|
}
|
|
1941
1949
|
|
|
@@ -1951,7 +1959,7 @@ class InvokeModelWithResponseStreamCommand extends smithyClient.Command
|
|
|
1951
1959
|
},
|
|
1952
1960
|
})
|
|
1953
1961
|
.n("BedrockRuntimeClient", "InvokeModelWithResponseStreamCommand")
|
|
1954
|
-
.sc(InvokeModelWithResponseStream)
|
|
1962
|
+
.sc(InvokeModelWithResponseStream$)
|
|
1955
1963
|
.build() {
|
|
1956
1964
|
}
|
|
1957
1965
|
|
|
@@ -1963,7 +1971,7 @@ class ListAsyncInvokesCommand extends smithyClient.Command
|
|
|
1963
1971
|
})
|
|
1964
1972
|
.s("AmazonBedrockFrontendService", "ListAsyncInvokes", {})
|
|
1965
1973
|
.n("BedrockRuntimeClient", "ListAsyncInvokesCommand")
|
|
1966
|
-
.sc(ListAsyncInvokes)
|
|
1974
|
+
.sc(ListAsyncInvokes$)
|
|
1967
1975
|
.build() {
|
|
1968
1976
|
}
|
|
1969
1977
|
|
|
@@ -1975,7 +1983,7 @@ class StartAsyncInvokeCommand extends smithyClient.Command
|
|
|
1975
1983
|
})
|
|
1976
1984
|
.s("AmazonBedrockFrontendService", "StartAsyncInvoke", {})
|
|
1977
1985
|
.n("BedrockRuntimeClient", "StartAsyncInvokeCommand")
|
|
1978
|
-
.sc(StartAsyncInvoke)
|
|
1986
|
+
.sc(StartAsyncInvoke$)
|
|
1979
1987
|
.build() {
|
|
1980
1988
|
}
|
|
1981
1989
|
|
|
@@ -2239,68 +2247,242 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2239
2247
|
enumerable: true,
|
|
2240
2248
|
get: function () { return smithyClient.Client; }
|
|
2241
2249
|
});
|
|
2242
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2250
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2251
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2252
|
+
exports.AnyToolChoice$ = AnyToolChoice$;
|
|
2253
|
+
exports.AppliedGuardrailDetails$ = AppliedGuardrailDetails$;
|
|
2254
|
+
exports.ApplyGuardrail$ = ApplyGuardrail$;
|
|
2243
2255
|
exports.ApplyGuardrailCommand = ApplyGuardrailCommand;
|
|
2256
|
+
exports.ApplyGuardrailRequest$ = ApplyGuardrailRequest$;
|
|
2257
|
+
exports.ApplyGuardrailResponse$ = ApplyGuardrailResponse$;
|
|
2258
|
+
exports.AsyncInvokeOutputDataConfig$ = AsyncInvokeOutputDataConfig$;
|
|
2259
|
+
exports.AsyncInvokeS3OutputDataConfig$ = AsyncInvokeS3OutputDataConfig$;
|
|
2244
2260
|
exports.AsyncInvokeStatus = AsyncInvokeStatus;
|
|
2261
|
+
exports.AsyncInvokeSummary$ = AsyncInvokeSummary$;
|
|
2262
|
+
exports.AudioBlock$ = AudioBlock$;
|
|
2245
2263
|
exports.AudioFormat = AudioFormat;
|
|
2264
|
+
exports.AudioSource$ = AudioSource$;
|
|
2265
|
+
exports.AutoToolChoice$ = AutoToolChoice$;
|
|
2246
2266
|
exports.BedrockRuntime = BedrockRuntime;
|
|
2247
2267
|
exports.BedrockRuntimeClient = BedrockRuntimeClient;
|
|
2248
|
-
exports.BedrockRuntimeServiceException = BedrockRuntimeServiceException
|
|
2268
|
+
exports.BedrockRuntimeServiceException = BedrockRuntimeServiceException;
|
|
2269
|
+
exports.BedrockRuntimeServiceException$ = BedrockRuntimeServiceException$;
|
|
2270
|
+
exports.BidirectionalInputPayloadPart$ = BidirectionalInputPayloadPart$;
|
|
2271
|
+
exports.BidirectionalOutputPayloadPart$ = BidirectionalOutputPayloadPart$;
|
|
2272
|
+
exports.CachePointBlock$ = CachePointBlock$;
|
|
2249
2273
|
exports.CachePointType = CachePointType;
|
|
2250
|
-
exports.
|
|
2274
|
+
exports.Citation$ = Citation$;
|
|
2275
|
+
exports.CitationGeneratedContent$ = CitationGeneratedContent$;
|
|
2276
|
+
exports.CitationLocation$ = CitationLocation$;
|
|
2277
|
+
exports.CitationSourceContent$ = CitationSourceContent$;
|
|
2278
|
+
exports.CitationSourceContentDelta$ = CitationSourceContentDelta$;
|
|
2279
|
+
exports.CitationsConfig$ = CitationsConfig$;
|
|
2280
|
+
exports.CitationsContentBlock$ = CitationsContentBlock$;
|
|
2281
|
+
exports.CitationsDelta$ = CitationsDelta$;
|
|
2282
|
+
exports.ConflictException = ConflictException;
|
|
2283
|
+
exports.ConflictException$ = ConflictException$;
|
|
2284
|
+
exports.ContentBlock$ = ContentBlock$;
|
|
2285
|
+
exports.ContentBlockDelta$ = ContentBlockDelta$;
|
|
2286
|
+
exports.ContentBlockDeltaEvent$ = ContentBlockDeltaEvent$;
|
|
2287
|
+
exports.ContentBlockStart$ = ContentBlockStart$;
|
|
2288
|
+
exports.ContentBlockStartEvent$ = ContentBlockStartEvent$;
|
|
2289
|
+
exports.ContentBlockStopEvent$ = ContentBlockStopEvent$;
|
|
2251
2290
|
exports.ConversationRole = ConversationRole;
|
|
2291
|
+
exports.Converse$ = Converse$;
|
|
2252
2292
|
exports.ConverseCommand = ConverseCommand;
|
|
2293
|
+
exports.ConverseMetrics$ = ConverseMetrics$;
|
|
2294
|
+
exports.ConverseOutput$ = ConverseOutput$;
|
|
2295
|
+
exports.ConverseRequest$ = ConverseRequest$;
|
|
2296
|
+
exports.ConverseResponse$ = ConverseResponse$;
|
|
2297
|
+
exports.ConverseStream$ = ConverseStream$;
|
|
2253
2298
|
exports.ConverseStreamCommand = ConverseStreamCommand;
|
|
2299
|
+
exports.ConverseStreamMetadataEvent$ = ConverseStreamMetadataEvent$;
|
|
2300
|
+
exports.ConverseStreamMetrics$ = ConverseStreamMetrics$;
|
|
2301
|
+
exports.ConverseStreamOutput$ = ConverseStreamOutput$;
|
|
2302
|
+
exports.ConverseStreamRequest$ = ConverseStreamRequest$;
|
|
2303
|
+
exports.ConverseStreamResponse$ = ConverseStreamResponse$;
|
|
2304
|
+
exports.ConverseStreamTrace$ = ConverseStreamTrace$;
|
|
2305
|
+
exports.ConverseTokensRequest$ = ConverseTokensRequest$;
|
|
2306
|
+
exports.ConverseTrace$ = ConverseTrace$;
|
|
2307
|
+
exports.CountTokens$ = CountTokens$;
|
|
2254
2308
|
exports.CountTokensCommand = CountTokensCommand;
|
|
2309
|
+
exports.CountTokensInput$ = CountTokensInput$;
|
|
2310
|
+
exports.CountTokensRequest$ = CountTokensRequest$;
|
|
2311
|
+
exports.CountTokensResponse$ = CountTokensResponse$;
|
|
2312
|
+
exports.DocumentBlock$ = DocumentBlock$;
|
|
2313
|
+
exports.DocumentCharLocation$ = DocumentCharLocation$;
|
|
2314
|
+
exports.DocumentChunkLocation$ = DocumentChunkLocation$;
|
|
2315
|
+
exports.DocumentContentBlock$ = DocumentContentBlock$;
|
|
2255
2316
|
exports.DocumentFormat = DocumentFormat;
|
|
2317
|
+
exports.DocumentPageLocation$ = DocumentPageLocation$;
|
|
2318
|
+
exports.DocumentSource$ = DocumentSource$;
|
|
2319
|
+
exports.ErrorBlock$ = ErrorBlock$;
|
|
2320
|
+
exports.GetAsyncInvoke$ = GetAsyncInvoke$;
|
|
2256
2321
|
exports.GetAsyncInvokeCommand = GetAsyncInvokeCommand;
|
|
2322
|
+
exports.GetAsyncInvokeRequest$ = GetAsyncInvokeRequest$;
|
|
2323
|
+
exports.GetAsyncInvokeResponse$ = GetAsyncInvokeResponse$;
|
|
2257
2324
|
exports.GuardrailAction = GuardrailAction;
|
|
2325
|
+
exports.GuardrailAssessment$ = GuardrailAssessment$;
|
|
2326
|
+
exports.GuardrailAutomatedReasoningFinding$ = GuardrailAutomatedReasoningFinding$;
|
|
2327
|
+
exports.GuardrailAutomatedReasoningImpossibleFinding$ = GuardrailAutomatedReasoningImpossibleFinding$;
|
|
2328
|
+
exports.GuardrailAutomatedReasoningInputTextReference$ = GuardrailAutomatedReasoningInputTextReference$;
|
|
2329
|
+
exports.GuardrailAutomatedReasoningInvalidFinding$ = GuardrailAutomatedReasoningInvalidFinding$;
|
|
2330
|
+
exports.GuardrailAutomatedReasoningLogicWarning$ = GuardrailAutomatedReasoningLogicWarning$;
|
|
2258
2331
|
exports.GuardrailAutomatedReasoningLogicWarningType = GuardrailAutomatedReasoningLogicWarningType;
|
|
2332
|
+
exports.GuardrailAutomatedReasoningNoTranslationsFinding$ = GuardrailAutomatedReasoningNoTranslationsFinding$;
|
|
2333
|
+
exports.GuardrailAutomatedReasoningPolicyAssessment$ = GuardrailAutomatedReasoningPolicyAssessment$;
|
|
2334
|
+
exports.GuardrailAutomatedReasoningRule$ = GuardrailAutomatedReasoningRule$;
|
|
2335
|
+
exports.GuardrailAutomatedReasoningSatisfiableFinding$ = GuardrailAutomatedReasoningSatisfiableFinding$;
|
|
2336
|
+
exports.GuardrailAutomatedReasoningScenario$ = GuardrailAutomatedReasoningScenario$;
|
|
2337
|
+
exports.GuardrailAutomatedReasoningStatement$ = GuardrailAutomatedReasoningStatement$;
|
|
2338
|
+
exports.GuardrailAutomatedReasoningTooComplexFinding$ = GuardrailAutomatedReasoningTooComplexFinding$;
|
|
2339
|
+
exports.GuardrailAutomatedReasoningTranslation$ = GuardrailAutomatedReasoningTranslation$;
|
|
2340
|
+
exports.GuardrailAutomatedReasoningTranslationAmbiguousFinding$ = GuardrailAutomatedReasoningTranslationAmbiguousFinding$;
|
|
2341
|
+
exports.GuardrailAutomatedReasoningTranslationOption$ = GuardrailAutomatedReasoningTranslationOption$;
|
|
2342
|
+
exports.GuardrailAutomatedReasoningValidFinding$ = GuardrailAutomatedReasoningValidFinding$;
|
|
2343
|
+
exports.GuardrailConfiguration$ = GuardrailConfiguration$;
|
|
2344
|
+
exports.GuardrailContentBlock$ = GuardrailContentBlock$;
|
|
2345
|
+
exports.GuardrailContentFilter$ = GuardrailContentFilter$;
|
|
2259
2346
|
exports.GuardrailContentFilterConfidence = GuardrailContentFilterConfidence;
|
|
2260
2347
|
exports.GuardrailContentFilterStrength = GuardrailContentFilterStrength;
|
|
2261
2348
|
exports.GuardrailContentFilterType = GuardrailContentFilterType;
|
|
2262
2349
|
exports.GuardrailContentPolicyAction = GuardrailContentPolicyAction;
|
|
2350
|
+
exports.GuardrailContentPolicyAssessment$ = GuardrailContentPolicyAssessment$;
|
|
2263
2351
|
exports.GuardrailContentQualifier = GuardrailContentQualifier;
|
|
2264
2352
|
exports.GuardrailContentSource = GuardrailContentSource;
|
|
2353
|
+
exports.GuardrailContextualGroundingFilter$ = GuardrailContextualGroundingFilter$;
|
|
2265
2354
|
exports.GuardrailContextualGroundingFilterType = GuardrailContextualGroundingFilterType;
|
|
2266
2355
|
exports.GuardrailContextualGroundingPolicyAction = GuardrailContextualGroundingPolicyAction;
|
|
2356
|
+
exports.GuardrailContextualGroundingPolicyAssessment$ = GuardrailContextualGroundingPolicyAssessment$;
|
|
2357
|
+
exports.GuardrailConverseContentBlock$ = GuardrailConverseContentBlock$;
|
|
2267
2358
|
exports.GuardrailConverseContentQualifier = GuardrailConverseContentQualifier;
|
|
2359
|
+
exports.GuardrailConverseImageBlock$ = GuardrailConverseImageBlock$;
|
|
2268
2360
|
exports.GuardrailConverseImageFormat = GuardrailConverseImageFormat;
|
|
2361
|
+
exports.GuardrailConverseImageSource$ = GuardrailConverseImageSource$;
|
|
2362
|
+
exports.GuardrailConverseTextBlock$ = GuardrailConverseTextBlock$;
|
|
2363
|
+
exports.GuardrailCoverage$ = GuardrailCoverage$;
|
|
2364
|
+
exports.GuardrailCustomWord$ = GuardrailCustomWord$;
|
|
2365
|
+
exports.GuardrailImageBlock$ = GuardrailImageBlock$;
|
|
2366
|
+
exports.GuardrailImageCoverage$ = GuardrailImageCoverage$;
|
|
2269
2367
|
exports.GuardrailImageFormat = GuardrailImageFormat;
|
|
2368
|
+
exports.GuardrailImageSource$ = GuardrailImageSource$;
|
|
2369
|
+
exports.GuardrailInvocationMetrics$ = GuardrailInvocationMetrics$;
|
|
2370
|
+
exports.GuardrailManagedWord$ = GuardrailManagedWord$;
|
|
2270
2371
|
exports.GuardrailManagedWordType = GuardrailManagedWordType;
|
|
2271
2372
|
exports.GuardrailOrigin = GuardrailOrigin;
|
|
2373
|
+
exports.GuardrailOutputContent$ = GuardrailOutputContent$;
|
|
2272
2374
|
exports.GuardrailOutputScope = GuardrailOutputScope;
|
|
2273
2375
|
exports.GuardrailOwnership = GuardrailOwnership;
|
|
2376
|
+
exports.GuardrailPiiEntityFilter$ = GuardrailPiiEntityFilter$;
|
|
2274
2377
|
exports.GuardrailPiiEntityType = GuardrailPiiEntityType;
|
|
2378
|
+
exports.GuardrailRegexFilter$ = GuardrailRegexFilter$;
|
|
2275
2379
|
exports.GuardrailSensitiveInformationPolicyAction = GuardrailSensitiveInformationPolicyAction;
|
|
2380
|
+
exports.GuardrailSensitiveInformationPolicyAssessment$ = GuardrailSensitiveInformationPolicyAssessment$;
|
|
2381
|
+
exports.GuardrailStreamConfiguration$ = GuardrailStreamConfiguration$;
|
|
2276
2382
|
exports.GuardrailStreamProcessingMode = GuardrailStreamProcessingMode;
|
|
2383
|
+
exports.GuardrailTextBlock$ = GuardrailTextBlock$;
|
|
2384
|
+
exports.GuardrailTextCharactersCoverage$ = GuardrailTextCharactersCoverage$;
|
|
2385
|
+
exports.GuardrailTopic$ = GuardrailTopic$;
|
|
2277
2386
|
exports.GuardrailTopicPolicyAction = GuardrailTopicPolicyAction;
|
|
2387
|
+
exports.GuardrailTopicPolicyAssessment$ = GuardrailTopicPolicyAssessment$;
|
|
2278
2388
|
exports.GuardrailTopicType = GuardrailTopicType;
|
|
2279
2389
|
exports.GuardrailTrace = GuardrailTrace;
|
|
2390
|
+
exports.GuardrailTraceAssessment$ = GuardrailTraceAssessment$;
|
|
2391
|
+
exports.GuardrailUsage$ = GuardrailUsage$;
|
|
2280
2392
|
exports.GuardrailWordPolicyAction = GuardrailWordPolicyAction;
|
|
2393
|
+
exports.GuardrailWordPolicyAssessment$ = GuardrailWordPolicyAssessment$;
|
|
2394
|
+
exports.ImageBlock$ = ImageBlock$;
|
|
2395
|
+
exports.ImageBlockDelta$ = ImageBlockDelta$;
|
|
2396
|
+
exports.ImageBlockStart$ = ImageBlockStart$;
|
|
2281
2397
|
exports.ImageFormat = ImageFormat;
|
|
2282
|
-
exports.
|
|
2398
|
+
exports.ImageSource$ = ImageSource$;
|
|
2399
|
+
exports.InferenceConfiguration$ = InferenceConfiguration$;
|
|
2400
|
+
exports.InternalServerException = InternalServerException;
|
|
2401
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2402
|
+
exports.InvokeModel$ = InvokeModel$;
|
|
2283
2403
|
exports.InvokeModelCommand = InvokeModelCommand;
|
|
2404
|
+
exports.InvokeModelRequest$ = InvokeModelRequest$;
|
|
2405
|
+
exports.InvokeModelResponse$ = InvokeModelResponse$;
|
|
2406
|
+
exports.InvokeModelTokensRequest$ = InvokeModelTokensRequest$;
|
|
2407
|
+
exports.InvokeModelWithBidirectionalStream$ = InvokeModelWithBidirectionalStream$;
|
|
2284
2408
|
exports.InvokeModelWithBidirectionalStreamCommand = InvokeModelWithBidirectionalStreamCommand;
|
|
2409
|
+
exports.InvokeModelWithBidirectionalStreamInput$ = InvokeModelWithBidirectionalStreamInput$;
|
|
2410
|
+
exports.InvokeModelWithBidirectionalStreamOutput$ = InvokeModelWithBidirectionalStreamOutput$;
|
|
2411
|
+
exports.InvokeModelWithBidirectionalStreamRequest$ = InvokeModelWithBidirectionalStreamRequest$;
|
|
2412
|
+
exports.InvokeModelWithBidirectionalStreamResponse$ = InvokeModelWithBidirectionalStreamResponse$;
|
|
2413
|
+
exports.InvokeModelWithResponseStream$ = InvokeModelWithResponseStream$;
|
|
2285
2414
|
exports.InvokeModelWithResponseStreamCommand = InvokeModelWithResponseStreamCommand;
|
|
2415
|
+
exports.InvokeModelWithResponseStreamRequest$ = InvokeModelWithResponseStreamRequest$;
|
|
2416
|
+
exports.InvokeModelWithResponseStreamResponse$ = InvokeModelWithResponseStreamResponse$;
|
|
2417
|
+
exports.ListAsyncInvokes$ = ListAsyncInvokes$;
|
|
2286
2418
|
exports.ListAsyncInvokesCommand = ListAsyncInvokesCommand;
|
|
2287
|
-
exports.
|
|
2288
|
-
exports.
|
|
2289
|
-
exports.
|
|
2290
|
-
exports.
|
|
2419
|
+
exports.ListAsyncInvokesRequest$ = ListAsyncInvokesRequest$;
|
|
2420
|
+
exports.ListAsyncInvokesResponse$ = ListAsyncInvokesResponse$;
|
|
2421
|
+
exports.Message$ = Message$;
|
|
2422
|
+
exports.MessageStartEvent$ = MessageStartEvent$;
|
|
2423
|
+
exports.MessageStopEvent$ = MessageStopEvent$;
|
|
2424
|
+
exports.ModelErrorException = ModelErrorException;
|
|
2425
|
+
exports.ModelErrorException$ = ModelErrorException$;
|
|
2426
|
+
exports.ModelNotReadyException = ModelNotReadyException;
|
|
2427
|
+
exports.ModelNotReadyException$ = ModelNotReadyException$;
|
|
2428
|
+
exports.ModelStreamErrorException = ModelStreamErrorException;
|
|
2429
|
+
exports.ModelStreamErrorException$ = ModelStreamErrorException$;
|
|
2430
|
+
exports.ModelTimeoutException = ModelTimeoutException;
|
|
2431
|
+
exports.ModelTimeoutException$ = ModelTimeoutException$;
|
|
2432
|
+
exports.PayloadPart$ = PayloadPart$;
|
|
2291
2433
|
exports.PerformanceConfigLatency = PerformanceConfigLatency;
|
|
2292
|
-
exports.
|
|
2293
|
-
exports.
|
|
2434
|
+
exports.PerformanceConfiguration$ = PerformanceConfiguration$;
|
|
2435
|
+
exports.PromptRouterTrace$ = PromptRouterTrace$;
|
|
2436
|
+
exports.PromptVariableValues$ = PromptVariableValues$;
|
|
2437
|
+
exports.ReasoningContentBlock$ = ReasoningContentBlock$;
|
|
2438
|
+
exports.ReasoningContentBlockDelta$ = ReasoningContentBlockDelta$;
|
|
2439
|
+
exports.ReasoningTextBlock$ = ReasoningTextBlock$;
|
|
2440
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2441
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2442
|
+
exports.ResponseStream$ = ResponseStream$;
|
|
2443
|
+
exports.S3Location$ = S3Location$;
|
|
2444
|
+
exports.SearchResultBlock$ = SearchResultBlock$;
|
|
2445
|
+
exports.SearchResultContentBlock$ = SearchResultContentBlock$;
|
|
2446
|
+
exports.SearchResultLocation$ = SearchResultLocation$;
|
|
2447
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2448
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2449
|
+
exports.ServiceTier$ = ServiceTier$;
|
|
2294
2450
|
exports.ServiceTierType = ServiceTierType;
|
|
2295
|
-
exports.ServiceUnavailableException = ServiceUnavailableException
|
|
2451
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2452
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2296
2453
|
exports.SortAsyncInvocationBy = SortAsyncInvocationBy;
|
|
2297
2454
|
exports.SortOrder = SortOrder;
|
|
2455
|
+
exports.SpecificToolChoice$ = SpecificToolChoice$;
|
|
2456
|
+
exports.StartAsyncInvoke$ = StartAsyncInvoke$;
|
|
2298
2457
|
exports.StartAsyncInvokeCommand = StartAsyncInvokeCommand;
|
|
2458
|
+
exports.StartAsyncInvokeRequest$ = StartAsyncInvokeRequest$;
|
|
2459
|
+
exports.StartAsyncInvokeResponse$ = StartAsyncInvokeResponse$;
|
|
2299
2460
|
exports.StopReason = StopReason;
|
|
2300
|
-
exports.
|
|
2461
|
+
exports.SystemContentBlock$ = SystemContentBlock$;
|
|
2462
|
+
exports.SystemTool$ = SystemTool$;
|
|
2463
|
+
exports.Tag$ = Tag$;
|
|
2464
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2465
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2466
|
+
exports.TokenUsage$ = TokenUsage$;
|
|
2467
|
+
exports.Tool$ = Tool$;
|
|
2468
|
+
exports.ToolChoice$ = ToolChoice$;
|
|
2469
|
+
exports.ToolConfiguration$ = ToolConfiguration$;
|
|
2470
|
+
exports.ToolInputSchema$ = ToolInputSchema$;
|
|
2471
|
+
exports.ToolResultBlock$ = ToolResultBlock$;
|
|
2472
|
+
exports.ToolResultBlockDelta$ = ToolResultBlockDelta$;
|
|
2473
|
+
exports.ToolResultBlockStart$ = ToolResultBlockStart$;
|
|
2474
|
+
exports.ToolResultContentBlock$ = ToolResultContentBlock$;
|
|
2301
2475
|
exports.ToolResultStatus = ToolResultStatus;
|
|
2476
|
+
exports.ToolSpecification$ = ToolSpecification$;
|
|
2477
|
+
exports.ToolUseBlock$ = ToolUseBlock$;
|
|
2478
|
+
exports.ToolUseBlockDelta$ = ToolUseBlockDelta$;
|
|
2479
|
+
exports.ToolUseBlockStart$ = ToolUseBlockStart$;
|
|
2302
2480
|
exports.ToolUseType = ToolUseType;
|
|
2303
2481
|
exports.Trace = Trace;
|
|
2304
|
-
exports.ValidationException = ValidationException
|
|
2482
|
+
exports.ValidationException = ValidationException;
|
|
2483
|
+
exports.ValidationException$ = ValidationException$;
|
|
2484
|
+
exports.VideoBlock$ = VideoBlock$;
|
|
2305
2485
|
exports.VideoFormat = VideoFormat;
|
|
2486
|
+
exports.VideoSource$ = VideoSource$;
|
|
2487
|
+
exports.WebLocation$ = WebLocation$;
|
|
2306
2488
|
exports.paginateListAsyncInvokes = paginateListAsyncInvokes;
|