types-boto3-bedrock-runtime 1.37.24__py3-none-any.whl → 1.37.30__py3-none-any.whl
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.
- types_boto3_bedrock_runtime/__main__.py +3 -3
- types_boto3_bedrock_runtime/client.py +13 -0
- types_boto3_bedrock_runtime/client.pyi +13 -0
- types_boto3_bedrock_runtime/literals.py +8 -6
- types_boto3_bedrock_runtime/literals.pyi +8 -6
- types_boto3_bedrock_runtime/type_defs.py +64 -10
- types_boto3_bedrock_runtime/type_defs.pyi +59 -8
- types_boto3_bedrock_runtime/version.py +1 -1
- {types_boto3_bedrock_runtime-1.37.24.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/METADATA +4 -4
- types_boto3_bedrock_runtime-1.37.30.dist-info/RECORD +18 -0
- types_boto3_bedrock_runtime-1.37.24.dist-info/RECORD +0 -18
- {types_boto3_bedrock_runtime-1.37.24.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/WHEEL +0 -0
- {types_boto3_bedrock_runtime-1.37.24.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_bedrock_runtime-1.37.24.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/top_level.txt +0 -0
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 BedrockRuntime 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 BedrockRuntime 1.37.30\n"
|
|
16
|
+
"Version: 1.37.30\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime.html#bedrockruntime\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.30\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -37,6 +37,8 @@ from .type_defs import (
|
|
|
37
37
|
GetAsyncInvokeResponseTypeDef,
|
|
38
38
|
InvokeModelRequestTypeDef,
|
|
39
39
|
InvokeModelResponseTypeDef,
|
|
40
|
+
InvokeModelWithBidirectionalStreamRequestTypeDef,
|
|
41
|
+
InvokeModelWithBidirectionalStreamResponseTypeDef,
|
|
40
42
|
InvokeModelWithResponseStreamRequestTypeDef,
|
|
41
43
|
InvokeModelWithResponseStreamResponseTypeDef,
|
|
42
44
|
ListAsyncInvokesRequestTypeDef,
|
|
@@ -160,6 +162,17 @@ class BedrockRuntimeClient(BaseClient):
|
|
|
160
162
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/client/#invoke_model)
|
|
161
163
|
"""
|
|
162
164
|
|
|
165
|
+
def invoke_model_with_bidirectional_stream(
|
|
166
|
+
self, **kwargs: Unpack[InvokeModelWithBidirectionalStreamRequestTypeDef]
|
|
167
|
+
) -> InvokeModelWithBidirectionalStreamResponseTypeDef:
|
|
168
|
+
"""
|
|
169
|
+
Invoke the specified Amazon Bedrock model to run inference using the
|
|
170
|
+
bidirectional stream.
|
|
171
|
+
|
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/client/invoke_model_with_bidirectional_stream.html)
|
|
173
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/client/#invoke_model_with_bidirectional_stream)
|
|
174
|
+
"""
|
|
175
|
+
|
|
163
176
|
def invoke_model_with_response_stream(
|
|
164
177
|
self, **kwargs: Unpack[InvokeModelWithResponseStreamRequestTypeDef]
|
|
165
178
|
) -> InvokeModelWithResponseStreamResponseTypeDef:
|
|
@@ -37,6 +37,8 @@ from .type_defs import (
|
|
|
37
37
|
GetAsyncInvokeResponseTypeDef,
|
|
38
38
|
InvokeModelRequestTypeDef,
|
|
39
39
|
InvokeModelResponseTypeDef,
|
|
40
|
+
InvokeModelWithBidirectionalStreamRequestTypeDef,
|
|
41
|
+
InvokeModelWithBidirectionalStreamResponseTypeDef,
|
|
40
42
|
InvokeModelWithResponseStreamRequestTypeDef,
|
|
41
43
|
InvokeModelWithResponseStreamResponseTypeDef,
|
|
42
44
|
ListAsyncInvokesRequestTypeDef,
|
|
@@ -157,6 +159,17 @@ class BedrockRuntimeClient(BaseClient):
|
|
|
157
159
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/client/#invoke_model)
|
|
158
160
|
"""
|
|
159
161
|
|
|
162
|
+
def invoke_model_with_bidirectional_stream(
|
|
163
|
+
self, **kwargs: Unpack[InvokeModelWithBidirectionalStreamRequestTypeDef]
|
|
164
|
+
) -> InvokeModelWithBidirectionalStreamResponseTypeDef:
|
|
165
|
+
"""
|
|
166
|
+
Invoke the specified Amazon Bedrock model to run inference using the
|
|
167
|
+
bidirectional stream.
|
|
168
|
+
|
|
169
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime/client/invoke_model_with_bidirectional_stream.html)
|
|
170
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime/client/#invoke_model_with_bidirectional_stream)
|
|
171
|
+
"""
|
|
172
|
+
|
|
160
173
|
def invoke_model_with_response_stream(
|
|
161
174
|
self, **kwargs: Unpack[InvokeModelWithResponseStreamRequestTypeDef]
|
|
162
175
|
) -> InvokeModelWithResponseStreamResponseTypeDef:
|
|
@@ -41,6 +41,7 @@ __all__ = (
|
|
|
41
41
|
"GuardrailConverseImageFormatType",
|
|
42
42
|
"GuardrailImageFormatType",
|
|
43
43
|
"GuardrailManagedWordTypeType",
|
|
44
|
+
"GuardrailOutputScopeType",
|
|
44
45
|
"GuardrailPiiEntityTypeType",
|
|
45
46
|
"GuardrailSensitiveInformationPolicyActionType",
|
|
46
47
|
"GuardrailStreamProcessingModeType",
|
|
@@ -73,7 +74,7 @@ GuardrailContentFilterStrengthType = Literal["HIGH", "LOW", "MEDIUM", "NONE"]
|
|
|
73
74
|
GuardrailContentFilterTypeType = Literal[
|
|
74
75
|
"HATE", "INSULTS", "MISCONDUCT", "PROMPT_ATTACK", "SEXUAL", "VIOLENCE"
|
|
75
76
|
]
|
|
76
|
-
GuardrailContentPolicyActionType = Literal["BLOCKED"]
|
|
77
|
+
GuardrailContentPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
77
78
|
GuardrailContentQualifierType = Literal["grounding_source", "guard_content", "query"]
|
|
78
79
|
GuardrailContentSourceType = Literal["INPUT", "OUTPUT"]
|
|
79
80
|
GuardrailContextualGroundingFilterTypeType = Literal["GROUNDING", "RELEVANCE"]
|
|
@@ -82,6 +83,7 @@ GuardrailConverseContentQualifierType = Literal["grounding_source", "guard_conte
|
|
|
82
83
|
GuardrailConverseImageFormatType = Literal["jpeg", "png"]
|
|
83
84
|
GuardrailImageFormatType = Literal["jpeg", "png"]
|
|
84
85
|
GuardrailManagedWordTypeType = Literal["PROFANITY"]
|
|
86
|
+
GuardrailOutputScopeType = Literal["FULL", "INTERVENTIONS"]
|
|
85
87
|
GuardrailPiiEntityTypeType = Literal[
|
|
86
88
|
"ADDRESS",
|
|
87
89
|
"AGE",
|
|
@@ -115,12 +117,12 @@ GuardrailPiiEntityTypeType = Literal[
|
|
|
115
117
|
"US_SOCIAL_SECURITY_NUMBER",
|
|
116
118
|
"VEHICLE_IDENTIFICATION_NUMBER",
|
|
117
119
|
]
|
|
118
|
-
GuardrailSensitiveInformationPolicyActionType = Literal["ANONYMIZED", "BLOCKED"]
|
|
120
|
+
GuardrailSensitiveInformationPolicyActionType = Literal["ANONYMIZED", "BLOCKED", "NONE"]
|
|
119
121
|
GuardrailStreamProcessingModeType = Literal["async", "sync"]
|
|
120
|
-
GuardrailTopicPolicyActionType = Literal["BLOCKED"]
|
|
122
|
+
GuardrailTopicPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
121
123
|
GuardrailTopicTypeType = Literal["DENY"]
|
|
122
|
-
GuardrailTraceType = Literal["disabled", "enabled"]
|
|
123
|
-
GuardrailWordPolicyActionType = Literal["BLOCKED"]
|
|
124
|
+
GuardrailTraceType = Literal["disabled", "enabled", "enabled_full"]
|
|
125
|
+
GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
124
126
|
ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
|
|
125
127
|
ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
|
|
126
128
|
PerformanceConfigLatencyType = Literal["optimized", "standard"]
|
|
@@ -135,7 +137,7 @@ StopReasonType = Literal[
|
|
|
135
137
|
"tool_use",
|
|
136
138
|
]
|
|
137
139
|
ToolResultStatusType = Literal["error", "success"]
|
|
138
|
-
TraceType = Literal["DISABLED", "ENABLED"]
|
|
140
|
+
TraceType = Literal["DISABLED", "ENABLED", "ENABLED_FULL"]
|
|
139
141
|
VideoFormatType = Literal["flv", "mkv", "mov", "mp4", "mpeg", "mpg", "three_gp", "webm", "wmv"]
|
|
140
142
|
BedrockRuntimeServiceName = Literal["bedrock-runtime"]
|
|
141
143
|
ServiceName = Literal[
|
|
@@ -40,6 +40,7 @@ __all__ = (
|
|
|
40
40
|
"GuardrailConverseImageFormatType",
|
|
41
41
|
"GuardrailImageFormatType",
|
|
42
42
|
"GuardrailManagedWordTypeType",
|
|
43
|
+
"GuardrailOutputScopeType",
|
|
43
44
|
"GuardrailPiiEntityTypeType",
|
|
44
45
|
"GuardrailSensitiveInformationPolicyActionType",
|
|
45
46
|
"GuardrailStreamProcessingModeType",
|
|
@@ -71,7 +72,7 @@ GuardrailContentFilterStrengthType = Literal["HIGH", "LOW", "MEDIUM", "NONE"]
|
|
|
71
72
|
GuardrailContentFilterTypeType = Literal[
|
|
72
73
|
"HATE", "INSULTS", "MISCONDUCT", "PROMPT_ATTACK", "SEXUAL", "VIOLENCE"
|
|
73
74
|
]
|
|
74
|
-
GuardrailContentPolicyActionType = Literal["BLOCKED"]
|
|
75
|
+
GuardrailContentPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
75
76
|
GuardrailContentQualifierType = Literal["grounding_source", "guard_content", "query"]
|
|
76
77
|
GuardrailContentSourceType = Literal["INPUT", "OUTPUT"]
|
|
77
78
|
GuardrailContextualGroundingFilterTypeType = Literal["GROUNDING", "RELEVANCE"]
|
|
@@ -80,6 +81,7 @@ GuardrailConverseContentQualifierType = Literal["grounding_source", "guard_conte
|
|
|
80
81
|
GuardrailConverseImageFormatType = Literal["jpeg", "png"]
|
|
81
82
|
GuardrailImageFormatType = Literal["jpeg", "png"]
|
|
82
83
|
GuardrailManagedWordTypeType = Literal["PROFANITY"]
|
|
84
|
+
GuardrailOutputScopeType = Literal["FULL", "INTERVENTIONS"]
|
|
83
85
|
GuardrailPiiEntityTypeType = Literal[
|
|
84
86
|
"ADDRESS",
|
|
85
87
|
"AGE",
|
|
@@ -113,12 +115,12 @@ GuardrailPiiEntityTypeType = Literal[
|
|
|
113
115
|
"US_SOCIAL_SECURITY_NUMBER",
|
|
114
116
|
"VEHICLE_IDENTIFICATION_NUMBER",
|
|
115
117
|
]
|
|
116
|
-
GuardrailSensitiveInformationPolicyActionType = Literal["ANONYMIZED", "BLOCKED"]
|
|
118
|
+
GuardrailSensitiveInformationPolicyActionType = Literal["ANONYMIZED", "BLOCKED", "NONE"]
|
|
117
119
|
GuardrailStreamProcessingModeType = Literal["async", "sync"]
|
|
118
|
-
GuardrailTopicPolicyActionType = Literal["BLOCKED"]
|
|
120
|
+
GuardrailTopicPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
119
121
|
GuardrailTopicTypeType = Literal["DENY"]
|
|
120
|
-
GuardrailTraceType = Literal["disabled", "enabled"]
|
|
121
|
-
GuardrailWordPolicyActionType = Literal["BLOCKED"]
|
|
122
|
+
GuardrailTraceType = Literal["disabled", "enabled", "enabled_full"]
|
|
123
|
+
GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
|
|
122
124
|
ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
|
|
123
125
|
ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
|
|
124
126
|
PerformanceConfigLatencyType = Literal["optimized", "standard"]
|
|
@@ -133,7 +135,7 @@ StopReasonType = Literal[
|
|
|
133
135
|
"tool_use",
|
|
134
136
|
]
|
|
135
137
|
ToolResultStatusType = Literal["error", "success"]
|
|
136
|
-
TraceType = Literal["DISABLED", "ENABLED"]
|
|
138
|
+
TraceType = Literal["DISABLED", "ENABLED", "ENABLED_FULL"]
|
|
137
139
|
VideoFormatType = Literal["flv", "mkv", "mov", "mp4", "mpeg", "mpg", "three_gp", "webm", "wmv"]
|
|
138
140
|
BedrockRuntimeServiceName = Literal["bedrock-runtime"]
|
|
139
141
|
ServiceName = Literal[
|
|
@@ -31,6 +31,7 @@ from .literals import (
|
|
|
31
31
|
GuardrailContentFilterConfidenceType,
|
|
32
32
|
GuardrailContentFilterStrengthType,
|
|
33
33
|
GuardrailContentFilterTypeType,
|
|
34
|
+
GuardrailContentPolicyActionType,
|
|
34
35
|
GuardrailContentQualifierType,
|
|
35
36
|
GuardrailContentSourceType,
|
|
36
37
|
GuardrailContextualGroundingFilterTypeType,
|
|
@@ -38,10 +39,13 @@ from .literals import (
|
|
|
38
39
|
GuardrailConverseContentQualifierType,
|
|
39
40
|
GuardrailConverseImageFormatType,
|
|
40
41
|
GuardrailImageFormatType,
|
|
42
|
+
GuardrailOutputScopeType,
|
|
41
43
|
GuardrailPiiEntityTypeType,
|
|
42
44
|
GuardrailSensitiveInformationPolicyActionType,
|
|
43
45
|
GuardrailStreamProcessingModeType,
|
|
46
|
+
GuardrailTopicPolicyActionType,
|
|
44
47
|
GuardrailTraceType,
|
|
48
|
+
GuardrailWordPolicyActionType,
|
|
45
49
|
ImageFormatType,
|
|
46
50
|
PerformanceConfigLatencyType,
|
|
47
51
|
SortOrderType,
|
|
@@ -69,6 +73,8 @@ __all__ = (
|
|
|
69
73
|
"AsyncInvokeOutputDataConfigTypeDef",
|
|
70
74
|
"AsyncInvokeS3OutputDataConfigTypeDef",
|
|
71
75
|
"AsyncInvokeSummaryTypeDef",
|
|
76
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
77
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
72
78
|
"BlobTypeDef",
|
|
73
79
|
"CachePointBlockTypeDef",
|
|
74
80
|
"ContentBlockDeltaEventTypeDef",
|
|
@@ -146,6 +152,10 @@ __all__ = (
|
|
|
146
152
|
"InternalServerExceptionTypeDef",
|
|
147
153
|
"InvokeModelRequestTypeDef",
|
|
148
154
|
"InvokeModelResponseTypeDef",
|
|
155
|
+
"InvokeModelWithBidirectionalStreamInputTypeDef",
|
|
156
|
+
"InvokeModelWithBidirectionalStreamOutputTypeDef",
|
|
157
|
+
"InvokeModelWithBidirectionalStreamRequestTypeDef",
|
|
158
|
+
"InvokeModelWithBidirectionalStreamResponseTypeDef",
|
|
149
159
|
"InvokeModelWithResponseStreamRequestTypeDef",
|
|
150
160
|
"InvokeModelWithResponseStreamResponseTypeDef",
|
|
151
161
|
"ListAsyncInvokesRequestPaginateTypeDef",
|
|
@@ -235,6 +245,12 @@ class AsyncInvokeS3OutputDataConfigTypeDef(TypedDict):
|
|
|
235
245
|
|
|
236
246
|
|
|
237
247
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
248
|
+
BidirectionalOutputPayloadPartTypeDef = TypedDict(
|
|
249
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
250
|
+
{
|
|
251
|
+
"bytes": NotRequired[bytes],
|
|
252
|
+
},
|
|
253
|
+
)
|
|
238
254
|
CachePointBlockTypeDef = TypedDict(
|
|
239
255
|
"CachePointBlockTypeDef",
|
|
240
256
|
{
|
|
@@ -375,8 +391,9 @@ GuardrailContentFilterTypeDef = TypedDict(
|
|
|
375
391
|
{
|
|
376
392
|
"type": GuardrailContentFilterTypeType,
|
|
377
393
|
"confidence": GuardrailContentFilterConfidenceType,
|
|
378
|
-
"action":
|
|
394
|
+
"action": GuardrailContentPolicyActionType,
|
|
379
395
|
"filterStrength": NotRequired[GuardrailContentFilterStrengthType],
|
|
396
|
+
"detected": NotRequired[bool],
|
|
380
397
|
},
|
|
381
398
|
)
|
|
382
399
|
GuardrailContextualGroundingFilterTypeDef = TypedDict(
|
|
@@ -386,6 +403,7 @@ GuardrailContextualGroundingFilterTypeDef = TypedDict(
|
|
|
386
403
|
"threshold": float,
|
|
387
404
|
"score": float,
|
|
388
405
|
"action": GuardrailContextualGroundingPolicyActionType,
|
|
406
|
+
"detected": NotRequired[bool],
|
|
389
407
|
},
|
|
390
408
|
)
|
|
391
409
|
|
|
@@ -420,7 +438,8 @@ class GuardrailTextCharactersCoverageTypeDef(TypedDict):
|
|
|
420
438
|
|
|
421
439
|
class GuardrailCustomWordTypeDef(TypedDict):
|
|
422
440
|
match: str
|
|
423
|
-
action:
|
|
441
|
+
action: GuardrailWordPolicyActionType
|
|
442
|
+
detected: NotRequired[bool]
|
|
424
443
|
|
|
425
444
|
|
|
426
445
|
GuardrailManagedWordTypeDef = TypedDict(
|
|
@@ -428,7 +447,8 @@ GuardrailManagedWordTypeDef = TypedDict(
|
|
|
428
447
|
{
|
|
429
448
|
"match": str,
|
|
430
449
|
"type": Literal["PROFANITY"],
|
|
431
|
-
"action":
|
|
450
|
+
"action": GuardrailWordPolicyActionType,
|
|
451
|
+
"detected": NotRequired[bool],
|
|
432
452
|
},
|
|
433
453
|
)
|
|
434
454
|
GuardrailPiiEntityFilterTypeDef = TypedDict(
|
|
@@ -437,6 +457,7 @@ GuardrailPiiEntityFilterTypeDef = TypedDict(
|
|
|
437
457
|
"match": str,
|
|
438
458
|
"type": GuardrailPiiEntityTypeType,
|
|
439
459
|
"action": GuardrailSensitiveInformationPolicyActionType,
|
|
460
|
+
"detected": NotRequired[bool],
|
|
440
461
|
},
|
|
441
462
|
)
|
|
442
463
|
|
|
@@ -446,6 +467,7 @@ class GuardrailRegexFilterTypeDef(TypedDict):
|
|
|
446
467
|
name: NotRequired[str]
|
|
447
468
|
match: NotRequired[str]
|
|
448
469
|
regex: NotRequired[str]
|
|
470
|
+
detected: NotRequired[bool]
|
|
449
471
|
|
|
450
472
|
|
|
451
473
|
GuardrailTopicTypeDef = TypedDict(
|
|
@@ -453,7 +475,8 @@ GuardrailTopicTypeDef = TypedDict(
|
|
|
453
475
|
{
|
|
454
476
|
"name": str,
|
|
455
477
|
"type": Literal["DENY"],
|
|
456
|
-
"action":
|
|
478
|
+
"action": GuardrailTopicPolicyActionType,
|
|
479
|
+
"detected": NotRequired[bool],
|
|
457
480
|
},
|
|
458
481
|
)
|
|
459
482
|
ImageSourceOutputTypeDef = TypedDict(
|
|
@@ -464,6 +487,10 @@ ImageSourceOutputTypeDef = TypedDict(
|
|
|
464
487
|
)
|
|
465
488
|
|
|
466
489
|
|
|
490
|
+
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
491
|
+
message: NotRequired[str]
|
|
492
|
+
|
|
493
|
+
|
|
467
494
|
class PaginatorConfigTypeDef(TypedDict):
|
|
468
495
|
MaxItems: NotRequired[int]
|
|
469
496
|
PageSize: NotRequired[int]
|
|
@@ -471,12 +498,6 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
471
498
|
|
|
472
499
|
|
|
473
500
|
TimestampTypeDef = Union[datetime, str]
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
477
|
-
message: NotRequired[str]
|
|
478
|
-
|
|
479
|
-
|
|
480
501
|
PayloadPartTypeDef = TypedDict(
|
|
481
502
|
"PayloadPartTypeDef",
|
|
482
503
|
{
|
|
@@ -534,6 +555,12 @@ class AsyncInvokeOutputDataConfigTypeDef(TypedDict):
|
|
|
534
555
|
s3OutputDataConfig: NotRequired[AsyncInvokeS3OutputDataConfigTypeDef]
|
|
535
556
|
|
|
536
557
|
|
|
558
|
+
BidirectionalInputPayloadPartTypeDef = TypedDict(
|
|
559
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
560
|
+
{
|
|
561
|
+
"bytes": NotRequired[BlobTypeDef],
|
|
562
|
+
},
|
|
563
|
+
)
|
|
537
564
|
DocumentSourceTypeDef = TypedDict(
|
|
538
565
|
"DocumentSourceTypeDef",
|
|
539
566
|
{
|
|
@@ -650,6 +677,16 @@ ImageBlockOutputTypeDef = TypedDict(
|
|
|
650
677
|
)
|
|
651
678
|
|
|
652
679
|
|
|
680
|
+
class InvokeModelWithBidirectionalStreamOutputTypeDef(TypedDict):
|
|
681
|
+
chunk: NotRequired[BidirectionalOutputPayloadPartTypeDef]
|
|
682
|
+
internalServerException: NotRequired[InternalServerExceptionTypeDef]
|
|
683
|
+
modelStreamErrorException: NotRequired[ModelStreamErrorExceptionTypeDef]
|
|
684
|
+
validationException: NotRequired[ValidationExceptionTypeDef]
|
|
685
|
+
throttlingException: NotRequired[ThrottlingExceptionTypeDef]
|
|
686
|
+
modelTimeoutException: NotRequired[ModelTimeoutExceptionTypeDef]
|
|
687
|
+
serviceUnavailableException: NotRequired[ServiceUnavailableExceptionTypeDef]
|
|
688
|
+
|
|
689
|
+
|
|
653
690
|
class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
|
|
654
691
|
submitTimeAfter: NotRequired[TimestampTypeDef]
|
|
655
692
|
submitTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -755,6 +792,10 @@ class StartAsyncInvokeRequestTypeDef(TypedDict):
|
|
|
755
792
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
756
793
|
|
|
757
794
|
|
|
795
|
+
class InvokeModelWithBidirectionalStreamInputTypeDef(TypedDict):
|
|
796
|
+
chunk: NotRequired[BidirectionalInputPayloadPartTypeDef]
|
|
797
|
+
|
|
798
|
+
|
|
758
799
|
DocumentSourceUnionTypeDef = Union[DocumentSourceTypeDef, DocumentSourceOutputTypeDef]
|
|
759
800
|
GuardrailConverseImageSourceUnionTypeDef = Union[
|
|
760
801
|
GuardrailConverseImageSourceTypeDef, GuardrailConverseImageSourceOutputTypeDef
|
|
@@ -790,6 +831,11 @@ class GuardrailInvocationMetricsTypeDef(TypedDict):
|
|
|
790
831
|
guardrailCoverage: NotRequired[GuardrailCoverageTypeDef]
|
|
791
832
|
|
|
792
833
|
|
|
834
|
+
class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
|
|
835
|
+
body: EventStream[InvokeModelWithBidirectionalStreamOutputTypeDef]
|
|
836
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
837
|
+
|
|
838
|
+
|
|
793
839
|
class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
794
840
|
body: EventStream[ResponseStreamTypeDef]
|
|
795
841
|
contentType: str
|
|
@@ -821,6 +867,11 @@ class ListAsyncInvokesResponseTypeDef(TypedDict):
|
|
|
821
867
|
nextToken: NotRequired[str]
|
|
822
868
|
|
|
823
869
|
|
|
870
|
+
class InvokeModelWithBidirectionalStreamRequestTypeDef(TypedDict):
|
|
871
|
+
modelId: str
|
|
872
|
+
body: EventStream[InvokeModelWithBidirectionalStreamInputTypeDef]
|
|
873
|
+
|
|
874
|
+
|
|
824
875
|
DocumentBlockTypeDef = TypedDict(
|
|
825
876
|
"DocumentBlockTypeDef",
|
|
826
877
|
{
|
|
@@ -894,6 +945,7 @@ class ApplyGuardrailRequestTypeDef(TypedDict):
|
|
|
894
945
|
guardrailVersion: str
|
|
895
946
|
source: GuardrailContentSourceType
|
|
896
947
|
content: Sequence[GuardrailContentBlockTypeDef]
|
|
948
|
+
outputScope: NotRequired[GuardrailOutputScopeType]
|
|
897
949
|
|
|
898
950
|
|
|
899
951
|
ImageBlockUnionTypeDef = Union[ImageBlockTypeDef, ImageBlockOutputTypeDef]
|
|
@@ -902,6 +954,7 @@ ImageBlockUnionTypeDef = Union[ImageBlockTypeDef, ImageBlockOutputTypeDef]
|
|
|
902
954
|
class ApplyGuardrailResponseTypeDef(TypedDict):
|
|
903
955
|
usage: GuardrailUsageTypeDef
|
|
904
956
|
action: GuardrailActionType
|
|
957
|
+
actionReason: str
|
|
905
958
|
outputs: List[GuardrailOutputContentTypeDef]
|
|
906
959
|
assessments: List[GuardrailAssessmentTypeDef]
|
|
907
960
|
guardrailCoverage: GuardrailCoverageTypeDef
|
|
@@ -912,6 +965,7 @@ class GuardrailTraceAssessmentTypeDef(TypedDict):
|
|
|
912
965
|
modelOutput: NotRequired[List[str]]
|
|
913
966
|
inputAssessment: NotRequired[Dict[str, GuardrailAssessmentTypeDef]]
|
|
914
967
|
outputAssessments: NotRequired[Dict[str, List[GuardrailAssessmentTypeDef]]]
|
|
968
|
+
actionReason: NotRequired[str]
|
|
915
969
|
|
|
916
970
|
|
|
917
971
|
class ToolResultBlockOutputTypeDef(TypedDict):
|
|
@@ -31,6 +31,7 @@ from .literals import (
|
|
|
31
31
|
GuardrailContentFilterConfidenceType,
|
|
32
32
|
GuardrailContentFilterStrengthType,
|
|
33
33
|
GuardrailContentFilterTypeType,
|
|
34
|
+
GuardrailContentPolicyActionType,
|
|
34
35
|
GuardrailContentQualifierType,
|
|
35
36
|
GuardrailContentSourceType,
|
|
36
37
|
GuardrailContextualGroundingFilterTypeType,
|
|
@@ -38,10 +39,13 @@ from .literals import (
|
|
|
38
39
|
GuardrailConverseContentQualifierType,
|
|
39
40
|
GuardrailConverseImageFormatType,
|
|
40
41
|
GuardrailImageFormatType,
|
|
42
|
+
GuardrailOutputScopeType,
|
|
41
43
|
GuardrailPiiEntityTypeType,
|
|
42
44
|
GuardrailSensitiveInformationPolicyActionType,
|
|
43
45
|
GuardrailStreamProcessingModeType,
|
|
46
|
+
GuardrailTopicPolicyActionType,
|
|
44
47
|
GuardrailTraceType,
|
|
48
|
+
GuardrailWordPolicyActionType,
|
|
45
49
|
ImageFormatType,
|
|
46
50
|
PerformanceConfigLatencyType,
|
|
47
51
|
SortOrderType,
|
|
@@ -68,6 +72,8 @@ __all__ = (
|
|
|
68
72
|
"AsyncInvokeOutputDataConfigTypeDef",
|
|
69
73
|
"AsyncInvokeS3OutputDataConfigTypeDef",
|
|
70
74
|
"AsyncInvokeSummaryTypeDef",
|
|
75
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
76
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
71
77
|
"BlobTypeDef",
|
|
72
78
|
"CachePointBlockTypeDef",
|
|
73
79
|
"ContentBlockDeltaEventTypeDef",
|
|
@@ -145,6 +151,10 @@ __all__ = (
|
|
|
145
151
|
"InternalServerExceptionTypeDef",
|
|
146
152
|
"InvokeModelRequestTypeDef",
|
|
147
153
|
"InvokeModelResponseTypeDef",
|
|
154
|
+
"InvokeModelWithBidirectionalStreamInputTypeDef",
|
|
155
|
+
"InvokeModelWithBidirectionalStreamOutputTypeDef",
|
|
156
|
+
"InvokeModelWithBidirectionalStreamRequestTypeDef",
|
|
157
|
+
"InvokeModelWithBidirectionalStreamResponseTypeDef",
|
|
148
158
|
"InvokeModelWithResponseStreamRequestTypeDef",
|
|
149
159
|
"InvokeModelWithResponseStreamResponseTypeDef",
|
|
150
160
|
"ListAsyncInvokesRequestPaginateTypeDef",
|
|
@@ -229,6 +239,12 @@ class AsyncInvokeS3OutputDataConfigTypeDef(TypedDict):
|
|
|
229
239
|
bucketOwner: NotRequired[str]
|
|
230
240
|
|
|
231
241
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
242
|
+
BidirectionalOutputPayloadPartTypeDef = TypedDict(
|
|
243
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
244
|
+
{
|
|
245
|
+
"bytes": NotRequired[bytes],
|
|
246
|
+
},
|
|
247
|
+
)
|
|
232
248
|
CachePointBlockTypeDef = TypedDict(
|
|
233
249
|
"CachePointBlockTypeDef",
|
|
234
250
|
{
|
|
@@ -345,8 +361,9 @@ GuardrailContentFilterTypeDef = TypedDict(
|
|
|
345
361
|
{
|
|
346
362
|
"type": GuardrailContentFilterTypeType,
|
|
347
363
|
"confidence": GuardrailContentFilterConfidenceType,
|
|
348
|
-
"action":
|
|
364
|
+
"action": GuardrailContentPolicyActionType,
|
|
349
365
|
"filterStrength": NotRequired[GuardrailContentFilterStrengthType],
|
|
366
|
+
"detected": NotRequired[bool],
|
|
350
367
|
},
|
|
351
368
|
)
|
|
352
369
|
GuardrailContextualGroundingFilterTypeDef = TypedDict(
|
|
@@ -356,6 +373,7 @@ GuardrailContextualGroundingFilterTypeDef = TypedDict(
|
|
|
356
373
|
"threshold": float,
|
|
357
374
|
"score": float,
|
|
358
375
|
"action": GuardrailContextualGroundingPolicyActionType,
|
|
376
|
+
"detected": NotRequired[bool],
|
|
359
377
|
},
|
|
360
378
|
)
|
|
361
379
|
|
|
@@ -384,14 +402,16 @@ class GuardrailTextCharactersCoverageTypeDef(TypedDict):
|
|
|
384
402
|
|
|
385
403
|
class GuardrailCustomWordTypeDef(TypedDict):
|
|
386
404
|
match: str
|
|
387
|
-
action:
|
|
405
|
+
action: GuardrailWordPolicyActionType
|
|
406
|
+
detected: NotRequired[bool]
|
|
388
407
|
|
|
389
408
|
GuardrailManagedWordTypeDef = TypedDict(
|
|
390
409
|
"GuardrailManagedWordTypeDef",
|
|
391
410
|
{
|
|
392
411
|
"match": str,
|
|
393
412
|
"type": Literal["PROFANITY"],
|
|
394
|
-
"action":
|
|
413
|
+
"action": GuardrailWordPolicyActionType,
|
|
414
|
+
"detected": NotRequired[bool],
|
|
395
415
|
},
|
|
396
416
|
)
|
|
397
417
|
GuardrailPiiEntityFilterTypeDef = TypedDict(
|
|
@@ -400,6 +420,7 @@ GuardrailPiiEntityFilterTypeDef = TypedDict(
|
|
|
400
420
|
"match": str,
|
|
401
421
|
"type": GuardrailPiiEntityTypeType,
|
|
402
422
|
"action": GuardrailSensitiveInformationPolicyActionType,
|
|
423
|
+
"detected": NotRequired[bool],
|
|
403
424
|
},
|
|
404
425
|
)
|
|
405
426
|
|
|
@@ -408,13 +429,15 @@ class GuardrailRegexFilterTypeDef(TypedDict):
|
|
|
408
429
|
name: NotRequired[str]
|
|
409
430
|
match: NotRequired[str]
|
|
410
431
|
regex: NotRequired[str]
|
|
432
|
+
detected: NotRequired[bool]
|
|
411
433
|
|
|
412
434
|
GuardrailTopicTypeDef = TypedDict(
|
|
413
435
|
"GuardrailTopicTypeDef",
|
|
414
436
|
{
|
|
415
437
|
"name": str,
|
|
416
438
|
"type": Literal["DENY"],
|
|
417
|
-
"action":
|
|
439
|
+
"action": GuardrailTopicPolicyActionType,
|
|
440
|
+
"detected": NotRequired[bool],
|
|
418
441
|
},
|
|
419
442
|
)
|
|
420
443
|
ImageSourceOutputTypeDef = TypedDict(
|
|
@@ -424,16 +447,15 @@ ImageSourceOutputTypeDef = TypedDict(
|
|
|
424
447
|
},
|
|
425
448
|
)
|
|
426
449
|
|
|
450
|
+
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
451
|
+
message: NotRequired[str]
|
|
452
|
+
|
|
427
453
|
class PaginatorConfigTypeDef(TypedDict):
|
|
428
454
|
MaxItems: NotRequired[int]
|
|
429
455
|
PageSize: NotRequired[int]
|
|
430
456
|
StartingToken: NotRequired[str]
|
|
431
457
|
|
|
432
458
|
TimestampTypeDef = Union[datetime, str]
|
|
433
|
-
|
|
434
|
-
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
435
|
-
message: NotRequired[str]
|
|
436
|
-
|
|
437
459
|
PayloadPartTypeDef = TypedDict(
|
|
438
460
|
"PayloadPartTypeDef",
|
|
439
461
|
{
|
|
@@ -481,6 +503,12 @@ class StartAsyncInvokeResponseTypeDef(TypedDict):
|
|
|
481
503
|
class AsyncInvokeOutputDataConfigTypeDef(TypedDict):
|
|
482
504
|
s3OutputDataConfig: NotRequired[AsyncInvokeS3OutputDataConfigTypeDef]
|
|
483
505
|
|
|
506
|
+
BidirectionalInputPayloadPartTypeDef = TypedDict(
|
|
507
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
508
|
+
{
|
|
509
|
+
"bytes": NotRequired[BlobTypeDef],
|
|
510
|
+
},
|
|
511
|
+
)
|
|
484
512
|
DocumentSourceTypeDef = TypedDict(
|
|
485
513
|
"DocumentSourceTypeDef",
|
|
486
514
|
{
|
|
@@ -583,6 +611,15 @@ ImageBlockOutputTypeDef = TypedDict(
|
|
|
583
611
|
},
|
|
584
612
|
)
|
|
585
613
|
|
|
614
|
+
class InvokeModelWithBidirectionalStreamOutputTypeDef(TypedDict):
|
|
615
|
+
chunk: NotRequired[BidirectionalOutputPayloadPartTypeDef]
|
|
616
|
+
internalServerException: NotRequired[InternalServerExceptionTypeDef]
|
|
617
|
+
modelStreamErrorException: NotRequired[ModelStreamErrorExceptionTypeDef]
|
|
618
|
+
validationException: NotRequired[ValidationExceptionTypeDef]
|
|
619
|
+
throttlingException: NotRequired[ThrottlingExceptionTypeDef]
|
|
620
|
+
modelTimeoutException: NotRequired[ModelTimeoutExceptionTypeDef]
|
|
621
|
+
serviceUnavailableException: NotRequired[ServiceUnavailableExceptionTypeDef]
|
|
622
|
+
|
|
586
623
|
class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
|
|
587
624
|
submitTimeAfter: NotRequired[TimestampTypeDef]
|
|
588
625
|
submitTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -677,6 +714,9 @@ class StartAsyncInvokeRequestTypeDef(TypedDict):
|
|
|
677
714
|
clientRequestToken: NotRequired[str]
|
|
678
715
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
679
716
|
|
|
717
|
+
class InvokeModelWithBidirectionalStreamInputTypeDef(TypedDict):
|
|
718
|
+
chunk: NotRequired[BidirectionalInputPayloadPartTypeDef]
|
|
719
|
+
|
|
680
720
|
DocumentSourceUnionTypeDef = Union[DocumentSourceTypeDef, DocumentSourceOutputTypeDef]
|
|
681
721
|
GuardrailConverseImageSourceUnionTypeDef = Union[
|
|
682
722
|
GuardrailConverseImageSourceTypeDef, GuardrailConverseImageSourceOutputTypeDef
|
|
@@ -707,6 +747,10 @@ class GuardrailInvocationMetricsTypeDef(TypedDict):
|
|
|
707
747
|
usage: NotRequired[GuardrailUsageTypeDef]
|
|
708
748
|
guardrailCoverage: NotRequired[GuardrailCoverageTypeDef]
|
|
709
749
|
|
|
750
|
+
class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
|
|
751
|
+
body: EventStream[InvokeModelWithBidirectionalStreamOutputTypeDef]
|
|
752
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
753
|
+
|
|
710
754
|
class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
711
755
|
body: EventStream[ResponseStreamTypeDef]
|
|
712
756
|
contentType: str
|
|
@@ -734,6 +778,10 @@ class ListAsyncInvokesResponseTypeDef(TypedDict):
|
|
|
734
778
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
735
779
|
nextToken: NotRequired[str]
|
|
736
780
|
|
|
781
|
+
class InvokeModelWithBidirectionalStreamRequestTypeDef(TypedDict):
|
|
782
|
+
modelId: str
|
|
783
|
+
body: EventStream[InvokeModelWithBidirectionalStreamInputTypeDef]
|
|
784
|
+
|
|
737
785
|
DocumentBlockTypeDef = TypedDict(
|
|
738
786
|
"DocumentBlockTypeDef",
|
|
739
787
|
{
|
|
@@ -799,12 +847,14 @@ class ApplyGuardrailRequestTypeDef(TypedDict):
|
|
|
799
847
|
guardrailVersion: str
|
|
800
848
|
source: GuardrailContentSourceType
|
|
801
849
|
content: Sequence[GuardrailContentBlockTypeDef]
|
|
850
|
+
outputScope: NotRequired[GuardrailOutputScopeType]
|
|
802
851
|
|
|
803
852
|
ImageBlockUnionTypeDef = Union[ImageBlockTypeDef, ImageBlockOutputTypeDef]
|
|
804
853
|
|
|
805
854
|
class ApplyGuardrailResponseTypeDef(TypedDict):
|
|
806
855
|
usage: GuardrailUsageTypeDef
|
|
807
856
|
action: GuardrailActionType
|
|
857
|
+
actionReason: str
|
|
808
858
|
outputs: List[GuardrailOutputContentTypeDef]
|
|
809
859
|
assessments: List[GuardrailAssessmentTypeDef]
|
|
810
860
|
guardrailCoverage: GuardrailCoverageTypeDef
|
|
@@ -814,6 +864,7 @@ class GuardrailTraceAssessmentTypeDef(TypedDict):
|
|
|
814
864
|
modelOutput: NotRequired[List[str]]
|
|
815
865
|
inputAssessment: NotRequired[Dict[str, GuardrailAssessmentTypeDef]]
|
|
816
866
|
outputAssessments: NotRequired[Dict[str, List[GuardrailAssessmentTypeDef]]]
|
|
867
|
+
actionReason: NotRequired[str]
|
|
817
868
|
|
|
818
869
|
class ToolResultBlockOutputTypeDef(TypedDict):
|
|
819
870
|
toolUseId: str
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-bedrock-runtime
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 BedrockRuntime 1.37.
|
|
3
|
+
Version: 1.37.30
|
|
4
|
+
Summary: Type annotations for boto3 BedrockRuntime 1.37.30 service generated with mypy-boto3-builder 8.10.1
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -57,7 +57,7 @@ Dynamic: summary
|
|
|
57
57
|

|
|
58
58
|
|
|
59
59
|
Type annotations for
|
|
60
|
-
[boto3 BedrockRuntime 1.37.
|
|
60
|
+
[boto3 BedrockRuntime 1.37.30](https://pypi.org/project/boto3/) compatible with
|
|
61
61
|
[VSCode](https://code.visualstudio.com/),
|
|
62
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.30' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `BedrockRuntime` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_bedrock_runtime/__init__.py,sha256=yVTpBudgQiZdF0pSNhAE-1xbRZSFBHRcN9lRoforRqk,774
|
|
2
|
+
types_boto3_bedrock_runtime/__init__.pyi,sha256=FTe8oZW7DRJdbaUR0zeqYoUvSJbUFsNGBllLTCZwU4k,773
|
|
3
|
+
types_boto3_bedrock_runtime/__main__.py,sha256=QnaUPugrPq7tE8Mvm_QC9XV4ScfdFbOYDCWfZIa_a6U,1015
|
|
4
|
+
types_boto3_bedrock_runtime/client.py,sha256=kjTKseKd8WybYKk-4ru6mPPvb6MHaw7YFAc9ZIu2sMw,9543
|
|
5
|
+
types_boto3_bedrock_runtime/client.pyi,sha256=yVHUXcX9AsgS6HIVuTp4olrDWJ8c_x5rtihDhBwG_DE,9540
|
|
6
|
+
types_boto3_bedrock_runtime/literals.py,sha256=QztBKRdE8PrGJNm4oqgZnWAOmIdt4qOMbRJUJ-qtlBM,13138
|
|
7
|
+
types_boto3_bedrock_runtime/literals.pyi,sha256=L78OoelU9sBoGcAVd75MS9KzYcehDS4_2C2zLeW5lbc,13136
|
|
8
|
+
types_boto3_bedrock_runtime/paginator.py,sha256=5Jxr9RrOJKN9XVbJReCbUJpJopBTa6lkmC2vmFjI2nQ,2194
|
|
9
|
+
types_boto3_bedrock_runtime/paginator.pyi,sha256=63nEmXrjk6YpFdjbM7HiTP4pBDClAUG2z9KGCvvqdpw,2190
|
|
10
|
+
types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_bedrock_runtime/type_defs.py,sha256=zQxqSPEESc72G1dOhflPNApgcCSL3rYwI6HLDFVOq1A,33590
|
|
12
|
+
types_boto3_bedrock_runtime/type_defs.pyi,sha256=0xnhJ88E_FrYLcccMKzoce_eXa3V5Sz9kIBScyWlhEI,33465
|
|
13
|
+
types_boto3_bedrock_runtime/version.py,sha256=yUF107nb5-VCtkA6FeVDzY2vS9wksY7e-xyBqmSbkVY,93
|
|
14
|
+
types_boto3_bedrock_runtime-1.37.30.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_bedrock_runtime-1.37.30.dist-info/METADATA,sha256=ZrzYkw5CgsYP1JXdryV3V9TQppgyUfFoTpDJlzTWVdg,15400
|
|
16
|
+
types_boto3_bedrock_runtime-1.37.30.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
+
types_boto3_bedrock_runtime-1.37.30.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
|
|
18
|
+
types_boto3_bedrock_runtime-1.37.30.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_bedrock_runtime/__init__.py,sha256=yVTpBudgQiZdF0pSNhAE-1xbRZSFBHRcN9lRoforRqk,774
|
|
2
|
-
types_boto3_bedrock_runtime/__init__.pyi,sha256=FTe8oZW7DRJdbaUR0zeqYoUvSJbUFsNGBllLTCZwU4k,773
|
|
3
|
-
types_boto3_bedrock_runtime/__main__.py,sha256=WAZc7lB1gqa_MQH67WbXaNsWW6BqkpgxdsLW_LI7w2Y,1015
|
|
4
|
-
types_boto3_bedrock_runtime/client.py,sha256=iurF8y_YjFKpdEcvN19laZcYlxlVOgOnNKac8PWVs1E,8774
|
|
5
|
-
types_boto3_bedrock_runtime/client.pyi,sha256=TVpF8IVA6RNUHuucSjD6tkwE8yaULNE5KyndQ0kO794,8771
|
|
6
|
-
types_boto3_bedrock_runtime/literals.py,sha256=zu1OhCUB9YXYG8GDhDUBwNsS5oJnAl8pgF4r8BVGKLQ,12982
|
|
7
|
-
types_boto3_bedrock_runtime/literals.pyi,sha256=D_9osFK6OgH2t0CpQG60Vel7knJIu7Dok3NxhBKsJEE,12980
|
|
8
|
-
types_boto3_bedrock_runtime/paginator.py,sha256=5Jxr9RrOJKN9XVbJReCbUJpJopBTa6lkmC2vmFjI2nQ,2194
|
|
9
|
-
types_boto3_bedrock_runtime/paginator.pyi,sha256=63nEmXrjk6YpFdjbM7HiTP4pBDClAUG2z9KGCvvqdpw,2190
|
|
10
|
-
types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_bedrock_runtime/type_defs.py,sha256=ixn8KgV1syy6US5-qkq89FMtwkSihl-shajOlyXV6Wc,31392
|
|
12
|
-
types_boto3_bedrock_runtime/type_defs.pyi,sha256=PNawih3vCEs1eTUrX2pHbzxqCl91TPiPAEYJKN2Lj9k,31270
|
|
13
|
-
types_boto3_bedrock_runtime/version.py,sha256=r1UeUnTdeXkZoIoq1Vo1PHOJVohDxqd4shvM2Q0OrHI,93
|
|
14
|
-
types_boto3_bedrock_runtime-1.37.24.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_bedrock_runtime-1.37.24.dist-info/METADATA,sha256=2XAXOEcgNq4eVLtoPfdUUqzvNtGfu0FB1OHy7n3kTIw,15400
|
|
16
|
-
types_boto3_bedrock_runtime-1.37.24.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
-
types_boto3_bedrock_runtime-1.37.24.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
|
|
18
|
-
types_boto3_bedrock_runtime-1.37.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|