types-boto3-bedrock-runtime 1.37.29__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/type_defs.py +46 -6
- types_boto3_bedrock_runtime/type_defs.pyi +41 -4
- types_boto3_bedrock_runtime/version.py +1 -1
- {types_boto3_bedrock_runtime-1.37.29.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.29.dist-info/RECORD +0 -18
- {types_boto3_bedrock_runtime-1.37.29.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/WHEEL +0 -0
- {types_boto3_bedrock_runtime-1.37.29.dist-info → types_boto3_bedrock_runtime-1.37.30.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_bedrock_runtime-1.37.29.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:
|
|
@@ -73,6 +73,8 @@ __all__ = (
|
|
|
73
73
|
"AsyncInvokeOutputDataConfigTypeDef",
|
|
74
74
|
"AsyncInvokeS3OutputDataConfigTypeDef",
|
|
75
75
|
"AsyncInvokeSummaryTypeDef",
|
|
76
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
77
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
76
78
|
"BlobTypeDef",
|
|
77
79
|
"CachePointBlockTypeDef",
|
|
78
80
|
"ContentBlockDeltaEventTypeDef",
|
|
@@ -150,6 +152,10 @@ __all__ = (
|
|
|
150
152
|
"InternalServerExceptionTypeDef",
|
|
151
153
|
"InvokeModelRequestTypeDef",
|
|
152
154
|
"InvokeModelResponseTypeDef",
|
|
155
|
+
"InvokeModelWithBidirectionalStreamInputTypeDef",
|
|
156
|
+
"InvokeModelWithBidirectionalStreamOutputTypeDef",
|
|
157
|
+
"InvokeModelWithBidirectionalStreamRequestTypeDef",
|
|
158
|
+
"InvokeModelWithBidirectionalStreamResponseTypeDef",
|
|
153
159
|
"InvokeModelWithResponseStreamRequestTypeDef",
|
|
154
160
|
"InvokeModelWithResponseStreamResponseTypeDef",
|
|
155
161
|
"ListAsyncInvokesRequestPaginateTypeDef",
|
|
@@ -239,6 +245,12 @@ class AsyncInvokeS3OutputDataConfigTypeDef(TypedDict):
|
|
|
239
245
|
|
|
240
246
|
|
|
241
247
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
248
|
+
BidirectionalOutputPayloadPartTypeDef = TypedDict(
|
|
249
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
250
|
+
{
|
|
251
|
+
"bytes": NotRequired[bytes],
|
|
252
|
+
},
|
|
253
|
+
)
|
|
242
254
|
CachePointBlockTypeDef = TypedDict(
|
|
243
255
|
"CachePointBlockTypeDef",
|
|
244
256
|
{
|
|
@@ -475,6 +487,10 @@ ImageSourceOutputTypeDef = TypedDict(
|
|
|
475
487
|
)
|
|
476
488
|
|
|
477
489
|
|
|
490
|
+
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
491
|
+
message: NotRequired[str]
|
|
492
|
+
|
|
493
|
+
|
|
478
494
|
class PaginatorConfigTypeDef(TypedDict):
|
|
479
495
|
MaxItems: NotRequired[int]
|
|
480
496
|
PageSize: NotRequired[int]
|
|
@@ -482,12 +498,6 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
482
498
|
|
|
483
499
|
|
|
484
500
|
TimestampTypeDef = Union[datetime, str]
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
488
|
-
message: NotRequired[str]
|
|
489
|
-
|
|
490
|
-
|
|
491
501
|
PayloadPartTypeDef = TypedDict(
|
|
492
502
|
"PayloadPartTypeDef",
|
|
493
503
|
{
|
|
@@ -545,6 +555,12 @@ class AsyncInvokeOutputDataConfigTypeDef(TypedDict):
|
|
|
545
555
|
s3OutputDataConfig: NotRequired[AsyncInvokeS3OutputDataConfigTypeDef]
|
|
546
556
|
|
|
547
557
|
|
|
558
|
+
BidirectionalInputPayloadPartTypeDef = TypedDict(
|
|
559
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
560
|
+
{
|
|
561
|
+
"bytes": NotRequired[BlobTypeDef],
|
|
562
|
+
},
|
|
563
|
+
)
|
|
548
564
|
DocumentSourceTypeDef = TypedDict(
|
|
549
565
|
"DocumentSourceTypeDef",
|
|
550
566
|
{
|
|
@@ -661,6 +677,16 @@ ImageBlockOutputTypeDef = TypedDict(
|
|
|
661
677
|
)
|
|
662
678
|
|
|
663
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
|
+
|
|
664
690
|
class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
|
|
665
691
|
submitTimeAfter: NotRequired[TimestampTypeDef]
|
|
666
692
|
submitTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -766,6 +792,10 @@ class StartAsyncInvokeRequestTypeDef(TypedDict):
|
|
|
766
792
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
767
793
|
|
|
768
794
|
|
|
795
|
+
class InvokeModelWithBidirectionalStreamInputTypeDef(TypedDict):
|
|
796
|
+
chunk: NotRequired[BidirectionalInputPayloadPartTypeDef]
|
|
797
|
+
|
|
798
|
+
|
|
769
799
|
DocumentSourceUnionTypeDef = Union[DocumentSourceTypeDef, DocumentSourceOutputTypeDef]
|
|
770
800
|
GuardrailConverseImageSourceUnionTypeDef = Union[
|
|
771
801
|
GuardrailConverseImageSourceTypeDef, GuardrailConverseImageSourceOutputTypeDef
|
|
@@ -801,6 +831,11 @@ class GuardrailInvocationMetricsTypeDef(TypedDict):
|
|
|
801
831
|
guardrailCoverage: NotRequired[GuardrailCoverageTypeDef]
|
|
802
832
|
|
|
803
833
|
|
|
834
|
+
class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
|
|
835
|
+
body: EventStream[InvokeModelWithBidirectionalStreamOutputTypeDef]
|
|
836
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
837
|
+
|
|
838
|
+
|
|
804
839
|
class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
805
840
|
body: EventStream[ResponseStreamTypeDef]
|
|
806
841
|
contentType: str
|
|
@@ -832,6 +867,11 @@ class ListAsyncInvokesResponseTypeDef(TypedDict):
|
|
|
832
867
|
nextToken: NotRequired[str]
|
|
833
868
|
|
|
834
869
|
|
|
870
|
+
class InvokeModelWithBidirectionalStreamRequestTypeDef(TypedDict):
|
|
871
|
+
modelId: str
|
|
872
|
+
body: EventStream[InvokeModelWithBidirectionalStreamInputTypeDef]
|
|
873
|
+
|
|
874
|
+
|
|
835
875
|
DocumentBlockTypeDef = TypedDict(
|
|
836
876
|
"DocumentBlockTypeDef",
|
|
837
877
|
{
|
|
@@ -72,6 +72,8 @@ __all__ = (
|
|
|
72
72
|
"AsyncInvokeOutputDataConfigTypeDef",
|
|
73
73
|
"AsyncInvokeS3OutputDataConfigTypeDef",
|
|
74
74
|
"AsyncInvokeSummaryTypeDef",
|
|
75
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
76
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
75
77
|
"BlobTypeDef",
|
|
76
78
|
"CachePointBlockTypeDef",
|
|
77
79
|
"ContentBlockDeltaEventTypeDef",
|
|
@@ -149,6 +151,10 @@ __all__ = (
|
|
|
149
151
|
"InternalServerExceptionTypeDef",
|
|
150
152
|
"InvokeModelRequestTypeDef",
|
|
151
153
|
"InvokeModelResponseTypeDef",
|
|
154
|
+
"InvokeModelWithBidirectionalStreamInputTypeDef",
|
|
155
|
+
"InvokeModelWithBidirectionalStreamOutputTypeDef",
|
|
156
|
+
"InvokeModelWithBidirectionalStreamRequestTypeDef",
|
|
157
|
+
"InvokeModelWithBidirectionalStreamResponseTypeDef",
|
|
152
158
|
"InvokeModelWithResponseStreamRequestTypeDef",
|
|
153
159
|
"InvokeModelWithResponseStreamResponseTypeDef",
|
|
154
160
|
"ListAsyncInvokesRequestPaginateTypeDef",
|
|
@@ -233,6 +239,12 @@ class AsyncInvokeS3OutputDataConfigTypeDef(TypedDict):
|
|
|
233
239
|
bucketOwner: NotRequired[str]
|
|
234
240
|
|
|
235
241
|
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
242
|
+
BidirectionalOutputPayloadPartTypeDef = TypedDict(
|
|
243
|
+
"BidirectionalOutputPayloadPartTypeDef",
|
|
244
|
+
{
|
|
245
|
+
"bytes": NotRequired[bytes],
|
|
246
|
+
},
|
|
247
|
+
)
|
|
236
248
|
CachePointBlockTypeDef = TypedDict(
|
|
237
249
|
"CachePointBlockTypeDef",
|
|
238
250
|
{
|
|
@@ -435,16 +447,15 @@ ImageSourceOutputTypeDef = TypedDict(
|
|
|
435
447
|
},
|
|
436
448
|
)
|
|
437
449
|
|
|
450
|
+
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
451
|
+
message: NotRequired[str]
|
|
452
|
+
|
|
438
453
|
class PaginatorConfigTypeDef(TypedDict):
|
|
439
454
|
MaxItems: NotRequired[int]
|
|
440
455
|
PageSize: NotRequired[int]
|
|
441
456
|
StartingToken: NotRequired[str]
|
|
442
457
|
|
|
443
458
|
TimestampTypeDef = Union[datetime, str]
|
|
444
|
-
|
|
445
|
-
class ModelTimeoutExceptionTypeDef(TypedDict):
|
|
446
|
-
message: NotRequired[str]
|
|
447
|
-
|
|
448
459
|
PayloadPartTypeDef = TypedDict(
|
|
449
460
|
"PayloadPartTypeDef",
|
|
450
461
|
{
|
|
@@ -492,6 +503,12 @@ class StartAsyncInvokeResponseTypeDef(TypedDict):
|
|
|
492
503
|
class AsyncInvokeOutputDataConfigTypeDef(TypedDict):
|
|
493
504
|
s3OutputDataConfig: NotRequired[AsyncInvokeS3OutputDataConfigTypeDef]
|
|
494
505
|
|
|
506
|
+
BidirectionalInputPayloadPartTypeDef = TypedDict(
|
|
507
|
+
"BidirectionalInputPayloadPartTypeDef",
|
|
508
|
+
{
|
|
509
|
+
"bytes": NotRequired[BlobTypeDef],
|
|
510
|
+
},
|
|
511
|
+
)
|
|
495
512
|
DocumentSourceTypeDef = TypedDict(
|
|
496
513
|
"DocumentSourceTypeDef",
|
|
497
514
|
{
|
|
@@ -594,6 +611,15 @@ ImageBlockOutputTypeDef = TypedDict(
|
|
|
594
611
|
},
|
|
595
612
|
)
|
|
596
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
|
+
|
|
597
623
|
class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
|
|
598
624
|
submitTimeAfter: NotRequired[TimestampTypeDef]
|
|
599
625
|
submitTimeBefore: NotRequired[TimestampTypeDef]
|
|
@@ -688,6 +714,9 @@ class StartAsyncInvokeRequestTypeDef(TypedDict):
|
|
|
688
714
|
clientRequestToken: NotRequired[str]
|
|
689
715
|
tags: NotRequired[Sequence[TagTypeDef]]
|
|
690
716
|
|
|
717
|
+
class InvokeModelWithBidirectionalStreamInputTypeDef(TypedDict):
|
|
718
|
+
chunk: NotRequired[BidirectionalInputPayloadPartTypeDef]
|
|
719
|
+
|
|
691
720
|
DocumentSourceUnionTypeDef = Union[DocumentSourceTypeDef, DocumentSourceOutputTypeDef]
|
|
692
721
|
GuardrailConverseImageSourceUnionTypeDef = Union[
|
|
693
722
|
GuardrailConverseImageSourceTypeDef, GuardrailConverseImageSourceOutputTypeDef
|
|
@@ -718,6 +747,10 @@ class GuardrailInvocationMetricsTypeDef(TypedDict):
|
|
|
718
747
|
usage: NotRequired[GuardrailUsageTypeDef]
|
|
719
748
|
guardrailCoverage: NotRequired[GuardrailCoverageTypeDef]
|
|
720
749
|
|
|
750
|
+
class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
|
|
751
|
+
body: EventStream[InvokeModelWithBidirectionalStreamOutputTypeDef]
|
|
752
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
753
|
+
|
|
721
754
|
class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
722
755
|
body: EventStream[ResponseStreamTypeDef]
|
|
723
756
|
contentType: str
|
|
@@ -745,6 +778,10 @@ class ListAsyncInvokesResponseTypeDef(TypedDict):
|
|
|
745
778
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
746
779
|
nextToken: NotRequired[str]
|
|
747
780
|
|
|
781
|
+
class InvokeModelWithBidirectionalStreamRequestTypeDef(TypedDict):
|
|
782
|
+
modelId: str
|
|
783
|
+
body: EventStream[InvokeModelWithBidirectionalStreamInputTypeDef]
|
|
784
|
+
|
|
748
785
|
DocumentBlockTypeDef = TypedDict(
|
|
749
786
|
"DocumentBlockTypeDef",
|
|
750
787
|
{
|
|
@@ -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=l4UletUPBzSSAIhtPosIwYk6UllgmUScHWWgwbNrZII,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=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=Re8tDfAP5DPEUDsJHk0Q-8oM1rXa8vEE7Ld_Yyz8WOg,31950
|
|
12
|
-
types_boto3_bedrock_runtime/type_defs.pyi,sha256=p1w3cElKbzr_BE5stXm1ICa8xJlwcsCQFwpVS9FnWR4,31828
|
|
13
|
-
types_boto3_bedrock_runtime/version.py,sha256=8SU524iT9S6biRW1KMnrJgtXIN8uoV6R7HeTIagwPZk,93
|
|
14
|
-
types_boto3_bedrock_runtime-1.37.29.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_bedrock_runtime-1.37.29.dist-info/METADATA,sha256=8QvbH9TjOqiPEVwmegdCcuQZ-SrkgNhIESslgT6ebbk,15400
|
|
16
|
-
types_boto3_bedrock_runtime-1.37.29.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
-
types_boto3_bedrock_runtime-1.37.29.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
|
|
18
|
-
types_boto3_bedrock_runtime-1.37.29.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|