types-boto3-bedrock-runtime 1.40.76__py3-none-any.whl → 1.41.0__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/literals.py +2 -0
- types_boto3_bedrock_runtime/literals.pyi +2 -0
- types_boto3_bedrock_runtime/type_defs.py +38 -0
- types_boto3_bedrock_runtime/type_defs.pyi +34 -0
- types_boto3_bedrock_runtime/version.py +1 -1
- {types_boto3_bedrock_runtime-1.40.76.dist-info → types_boto3_bedrock_runtime-1.41.0.dist-info}/METADATA +4 -4
- types_boto3_bedrock_runtime-1.41.0.dist-info/RECORD +18 -0
- types_boto3_bedrock_runtime-1.40.76.dist-info/RECORD +0 -18
- {types_boto3_bedrock_runtime-1.40.76.dist-info → types_boto3_bedrock_runtime-1.41.0.dist-info}/WHEEL +0 -0
- {types_boto3_bedrock_runtime-1.40.76.dist-info → types_boto3_bedrock_runtime-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_bedrock_runtime-1.40.76.dist-info → types_boto3_bedrock_runtime-1.41.0.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.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 BedrockRuntime 1.41.0\n"
|
|
16
|
+
"Version: 1.41.0\n"
|
|
17
17
|
"Builder version: 8.12.0\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.
|
|
29
|
+
sys.stdout.write("1.41.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -432,6 +432,7 @@ ServiceName = Literal[
|
|
|
432
432
|
"osis",
|
|
433
433
|
"outposts",
|
|
434
434
|
"panorama",
|
|
435
|
+
"partnercentral-channel",
|
|
435
436
|
"partnercentral-selling",
|
|
436
437
|
"payment-cryptography",
|
|
437
438
|
"payment-cryptography-data",
|
|
@@ -506,6 +507,7 @@ ServiceName = Literal[
|
|
|
506
507
|
"sesv2",
|
|
507
508
|
"shield",
|
|
508
509
|
"signer",
|
|
510
|
+
"signin",
|
|
509
511
|
"simspaceweaver",
|
|
510
512
|
"snow-device-management",
|
|
511
513
|
"snowball",
|
|
@@ -430,6 +430,7 @@ ServiceName = Literal[
|
|
|
430
430
|
"osis",
|
|
431
431
|
"outposts",
|
|
432
432
|
"panorama",
|
|
433
|
+
"partnercentral-channel",
|
|
433
434
|
"partnercentral-selling",
|
|
434
435
|
"payment-cryptography",
|
|
435
436
|
"payment-cryptography-data",
|
|
@@ -504,6 +505,7 @@ ServiceName = Literal[
|
|
|
504
505
|
"sesv2",
|
|
505
506
|
"shield",
|
|
506
507
|
"signer",
|
|
508
|
+
"signin",
|
|
507
509
|
"simspaceweaver",
|
|
508
510
|
"snow-device-management",
|
|
509
511
|
"snowball",
|
|
@@ -214,6 +214,11 @@ __all__ = (
|
|
|
214
214
|
"ResponseMetadataTypeDef",
|
|
215
215
|
"ResponseStreamTypeDef",
|
|
216
216
|
"S3LocationTypeDef",
|
|
217
|
+
"SearchResultBlockOutputTypeDef",
|
|
218
|
+
"SearchResultBlockTypeDef",
|
|
219
|
+
"SearchResultBlockUnionTypeDef",
|
|
220
|
+
"SearchResultContentBlockTypeDef",
|
|
221
|
+
"SearchResultLocationTypeDef",
|
|
217
222
|
"ServiceTierTypeDef",
|
|
218
223
|
"ServiceUnavailableExceptionTypeDef",
|
|
219
224
|
"SpecificToolChoiceTypeDef",
|
|
@@ -321,6 +326,12 @@ class DocumentPageLocationTypeDef(TypedDict):
|
|
|
321
326
|
end: NotRequired[int]
|
|
322
327
|
|
|
323
328
|
|
|
329
|
+
class SearchResultLocationTypeDef(TypedDict):
|
|
330
|
+
searchResultIndex: NotRequired[int]
|
|
331
|
+
start: NotRequired[int]
|
|
332
|
+
end: NotRequired[int]
|
|
333
|
+
|
|
334
|
+
|
|
324
335
|
class WebLocationTypeDef(TypedDict):
|
|
325
336
|
url: NotRequired[str]
|
|
326
337
|
domain: NotRequired[str]
|
|
@@ -623,6 +634,10 @@ class ReasoningTextBlockTypeDef(TypedDict):
|
|
|
623
634
|
signature: NotRequired[str]
|
|
624
635
|
|
|
625
636
|
|
|
637
|
+
class SearchResultContentBlockTypeDef(TypedDict):
|
|
638
|
+
text: str
|
|
639
|
+
|
|
640
|
+
|
|
626
641
|
class SpecificToolChoiceTypeDef(TypedDict):
|
|
627
642
|
name: str
|
|
628
643
|
|
|
@@ -726,6 +741,7 @@ class CitationLocationTypeDef(TypedDict):
|
|
|
726
741
|
documentChar: NotRequired[DocumentCharLocationTypeDef]
|
|
727
742
|
documentPage: NotRequired[DocumentPageLocationTypeDef]
|
|
728
743
|
documentChunk: NotRequired[DocumentChunkLocationTypeDef]
|
|
744
|
+
searchResultLocation: NotRequired[SearchResultLocationTypeDef]
|
|
729
745
|
|
|
730
746
|
|
|
731
747
|
class ContentBlockStartTypeDef(TypedDict):
|
|
@@ -889,6 +905,20 @@ class ReasoningContentBlockTypeDef(TypedDict):
|
|
|
889
905
|
redactedContent: NotRequired[BlobTypeDef]
|
|
890
906
|
|
|
891
907
|
|
|
908
|
+
class SearchResultBlockOutputTypeDef(TypedDict):
|
|
909
|
+
source: str
|
|
910
|
+
title: str
|
|
911
|
+
content: list[SearchResultContentBlockTypeDef]
|
|
912
|
+
citations: NotRequired[CitationsConfigTypeDef]
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
class SearchResultBlockTypeDef(TypedDict):
|
|
916
|
+
source: str
|
|
917
|
+
title: str
|
|
918
|
+
content: Sequence[SearchResultContentBlockTypeDef]
|
|
919
|
+
citations: NotRequired[CitationsConfigTypeDef]
|
|
920
|
+
|
|
921
|
+
|
|
892
922
|
ToolChoiceTypeDef = TypedDict(
|
|
893
923
|
"ToolChoiceTypeDef",
|
|
894
924
|
{
|
|
@@ -959,18 +989,21 @@ GuardrailImageBlockTypeDef = TypedDict(
|
|
|
959
989
|
|
|
960
990
|
class CitationOutputTypeDef(TypedDict):
|
|
961
991
|
title: NotRequired[str]
|
|
992
|
+
source: NotRequired[str]
|
|
962
993
|
sourceContent: NotRequired[list[CitationSourceContentTypeDef]]
|
|
963
994
|
location: NotRequired[CitationLocationTypeDef]
|
|
964
995
|
|
|
965
996
|
|
|
966
997
|
class CitationTypeDef(TypedDict):
|
|
967
998
|
title: NotRequired[str]
|
|
999
|
+
source: NotRequired[str]
|
|
968
1000
|
sourceContent: NotRequired[Sequence[CitationSourceContentTypeDef]]
|
|
969
1001
|
location: NotRequired[CitationLocationTypeDef]
|
|
970
1002
|
|
|
971
1003
|
|
|
972
1004
|
class CitationsDeltaTypeDef(TypedDict):
|
|
973
1005
|
title: NotRequired[str]
|
|
1006
|
+
source: NotRequired[str]
|
|
974
1007
|
sourceContent: NotRequired[list[CitationSourceContentDeltaTypeDef]]
|
|
975
1008
|
location: NotRequired[CitationLocationTypeDef]
|
|
976
1009
|
|
|
@@ -1066,6 +1099,7 @@ class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
|
1066
1099
|
ReasoningContentBlockUnionTypeDef = Union[
|
|
1067
1100
|
ReasoningContentBlockTypeDef, ReasoningContentBlockOutputTypeDef
|
|
1068
1101
|
]
|
|
1102
|
+
SearchResultBlockUnionTypeDef = Union[SearchResultBlockTypeDef, SearchResultBlockOutputTypeDef]
|
|
1069
1103
|
|
|
1070
1104
|
|
|
1071
1105
|
class ToolTypeDef(TypedDict):
|
|
@@ -1140,6 +1174,7 @@ class ToolResultContentBlockOutputTypeDef(TypedDict):
|
|
|
1140
1174
|
image: NotRequired[ImageBlockOutputTypeDef]
|
|
1141
1175
|
document: NotRequired[DocumentBlockOutputTypeDef]
|
|
1142
1176
|
video: NotRequired[VideoBlockOutputTypeDef]
|
|
1177
|
+
searchResult: NotRequired[SearchResultBlockOutputTypeDef]
|
|
1143
1178
|
|
|
1144
1179
|
|
|
1145
1180
|
VideoBlockTypeDef = TypedDict(
|
|
@@ -1229,6 +1264,7 @@ class ContentBlockOutputTypeDef(TypedDict):
|
|
|
1229
1264
|
cachePoint: NotRequired[CachePointBlockTypeDef]
|
|
1230
1265
|
reasoningContent: NotRequired[ReasoningContentBlockOutputTypeDef]
|
|
1231
1266
|
citationsContent: NotRequired[CitationsContentBlockOutputTypeDef]
|
|
1267
|
+
searchResult: NotRequired[SearchResultBlockOutputTypeDef]
|
|
1232
1268
|
|
|
1233
1269
|
|
|
1234
1270
|
class ToolResultContentBlockTypeDef(TypedDict):
|
|
@@ -1237,6 +1273,7 @@ class ToolResultContentBlockTypeDef(TypedDict):
|
|
|
1237
1273
|
image: NotRequired[ImageBlockUnionTypeDef]
|
|
1238
1274
|
document: NotRequired[DocumentBlockUnionTypeDef]
|
|
1239
1275
|
video: NotRequired[VideoBlockUnionTypeDef]
|
|
1276
|
+
searchResult: NotRequired[SearchResultBlockUnionTypeDef]
|
|
1240
1277
|
|
|
1241
1278
|
|
|
1242
1279
|
class GuardrailAutomatedReasoningPolicyAssessmentTypeDef(TypedDict):
|
|
@@ -1330,6 +1367,7 @@ class ContentBlockTypeDef(TypedDict):
|
|
|
1330
1367
|
cachePoint: NotRequired[CachePointBlockTypeDef]
|
|
1331
1368
|
reasoningContent: NotRequired[ReasoningContentBlockUnionTypeDef]
|
|
1332
1369
|
citationsContent: NotRequired[CitationsContentBlockUnionTypeDef]
|
|
1370
|
+
searchResult: NotRequired[SearchResultBlockUnionTypeDef]
|
|
1333
1371
|
|
|
1334
1372
|
|
|
1335
1373
|
class ConverseStreamMetadataEventTypeDef(TypedDict):
|
|
@@ -213,6 +213,11 @@ __all__ = (
|
|
|
213
213
|
"ResponseMetadataTypeDef",
|
|
214
214
|
"ResponseStreamTypeDef",
|
|
215
215
|
"S3LocationTypeDef",
|
|
216
|
+
"SearchResultBlockOutputTypeDef",
|
|
217
|
+
"SearchResultBlockTypeDef",
|
|
218
|
+
"SearchResultBlockUnionTypeDef",
|
|
219
|
+
"SearchResultContentBlockTypeDef",
|
|
220
|
+
"SearchResultLocationTypeDef",
|
|
216
221
|
"ServiceTierTypeDef",
|
|
217
222
|
"ServiceUnavailableExceptionTypeDef",
|
|
218
223
|
"SpecificToolChoiceTypeDef",
|
|
@@ -310,6 +315,11 @@ class DocumentPageLocationTypeDef(TypedDict):
|
|
|
310
315
|
start: NotRequired[int]
|
|
311
316
|
end: NotRequired[int]
|
|
312
317
|
|
|
318
|
+
class SearchResultLocationTypeDef(TypedDict):
|
|
319
|
+
searchResultIndex: NotRequired[int]
|
|
320
|
+
start: NotRequired[int]
|
|
321
|
+
end: NotRequired[int]
|
|
322
|
+
|
|
313
323
|
class WebLocationTypeDef(TypedDict):
|
|
314
324
|
url: NotRequired[str]
|
|
315
325
|
domain: NotRequired[str]
|
|
@@ -566,6 +576,9 @@ class ReasoningTextBlockTypeDef(TypedDict):
|
|
|
566
576
|
text: str
|
|
567
577
|
signature: NotRequired[str]
|
|
568
578
|
|
|
579
|
+
class SearchResultContentBlockTypeDef(TypedDict):
|
|
580
|
+
text: str
|
|
581
|
+
|
|
569
582
|
class SpecificToolChoiceTypeDef(TypedDict):
|
|
570
583
|
name: str
|
|
571
584
|
|
|
@@ -656,6 +669,7 @@ class CitationLocationTypeDef(TypedDict):
|
|
|
656
669
|
documentChar: NotRequired[DocumentCharLocationTypeDef]
|
|
657
670
|
documentPage: NotRequired[DocumentPageLocationTypeDef]
|
|
658
671
|
documentChunk: NotRequired[DocumentChunkLocationTypeDef]
|
|
672
|
+
searchResultLocation: NotRequired[SearchResultLocationTypeDef]
|
|
659
673
|
|
|
660
674
|
class ContentBlockStartTypeDef(TypedDict):
|
|
661
675
|
toolUse: NotRequired[ToolUseBlockStartTypeDef]
|
|
@@ -801,6 +815,18 @@ class ReasoningContentBlockTypeDef(TypedDict):
|
|
|
801
815
|
reasoningText: NotRequired[ReasoningTextBlockTypeDef]
|
|
802
816
|
redactedContent: NotRequired[BlobTypeDef]
|
|
803
817
|
|
|
818
|
+
class SearchResultBlockOutputTypeDef(TypedDict):
|
|
819
|
+
source: str
|
|
820
|
+
title: str
|
|
821
|
+
content: list[SearchResultContentBlockTypeDef]
|
|
822
|
+
citations: NotRequired[CitationsConfigTypeDef]
|
|
823
|
+
|
|
824
|
+
class SearchResultBlockTypeDef(TypedDict):
|
|
825
|
+
source: str
|
|
826
|
+
title: str
|
|
827
|
+
content: Sequence[SearchResultContentBlockTypeDef]
|
|
828
|
+
citations: NotRequired[CitationsConfigTypeDef]
|
|
829
|
+
|
|
804
830
|
ToolChoiceTypeDef = TypedDict(
|
|
805
831
|
"ToolChoiceTypeDef",
|
|
806
832
|
{
|
|
@@ -863,16 +889,19 @@ GuardrailImageBlockTypeDef = TypedDict(
|
|
|
863
889
|
|
|
864
890
|
class CitationOutputTypeDef(TypedDict):
|
|
865
891
|
title: NotRequired[str]
|
|
892
|
+
source: NotRequired[str]
|
|
866
893
|
sourceContent: NotRequired[list[CitationSourceContentTypeDef]]
|
|
867
894
|
location: NotRequired[CitationLocationTypeDef]
|
|
868
895
|
|
|
869
896
|
class CitationTypeDef(TypedDict):
|
|
870
897
|
title: NotRequired[str]
|
|
898
|
+
source: NotRequired[str]
|
|
871
899
|
sourceContent: NotRequired[Sequence[CitationSourceContentTypeDef]]
|
|
872
900
|
location: NotRequired[CitationLocationTypeDef]
|
|
873
901
|
|
|
874
902
|
class CitationsDeltaTypeDef(TypedDict):
|
|
875
903
|
title: NotRequired[str]
|
|
904
|
+
source: NotRequired[str]
|
|
876
905
|
sourceContent: NotRequired[list[CitationSourceContentDeltaTypeDef]]
|
|
877
906
|
location: NotRequired[CitationLocationTypeDef]
|
|
878
907
|
|
|
@@ -956,6 +985,7 @@ class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
|
|
|
956
985
|
ReasoningContentBlockUnionTypeDef = Union[
|
|
957
986
|
ReasoningContentBlockTypeDef, ReasoningContentBlockOutputTypeDef
|
|
958
987
|
]
|
|
988
|
+
SearchResultBlockUnionTypeDef = Union[SearchResultBlockTypeDef, SearchResultBlockOutputTypeDef]
|
|
959
989
|
|
|
960
990
|
class ToolTypeDef(TypedDict):
|
|
961
991
|
toolSpec: NotRequired[ToolSpecificationTypeDef]
|
|
@@ -1020,6 +1050,7 @@ class ToolResultContentBlockOutputTypeDef(TypedDict):
|
|
|
1020
1050
|
image: NotRequired[ImageBlockOutputTypeDef]
|
|
1021
1051
|
document: NotRequired[DocumentBlockOutputTypeDef]
|
|
1022
1052
|
video: NotRequired[VideoBlockOutputTypeDef]
|
|
1053
|
+
searchResult: NotRequired[SearchResultBlockOutputTypeDef]
|
|
1023
1054
|
|
|
1024
1055
|
VideoBlockTypeDef = TypedDict(
|
|
1025
1056
|
"VideoBlockTypeDef",
|
|
@@ -1097,6 +1128,7 @@ class ContentBlockOutputTypeDef(TypedDict):
|
|
|
1097
1128
|
cachePoint: NotRequired[CachePointBlockTypeDef]
|
|
1098
1129
|
reasoningContent: NotRequired[ReasoningContentBlockOutputTypeDef]
|
|
1099
1130
|
citationsContent: NotRequired[CitationsContentBlockOutputTypeDef]
|
|
1131
|
+
searchResult: NotRequired[SearchResultBlockOutputTypeDef]
|
|
1100
1132
|
|
|
1101
1133
|
class ToolResultContentBlockTypeDef(TypedDict):
|
|
1102
1134
|
json: NotRequired[Mapping[str, Any]]
|
|
@@ -1104,6 +1136,7 @@ class ToolResultContentBlockTypeDef(TypedDict):
|
|
|
1104
1136
|
image: NotRequired[ImageBlockUnionTypeDef]
|
|
1105
1137
|
document: NotRequired[DocumentBlockUnionTypeDef]
|
|
1106
1138
|
video: NotRequired[VideoBlockUnionTypeDef]
|
|
1139
|
+
searchResult: NotRequired[SearchResultBlockUnionTypeDef]
|
|
1107
1140
|
|
|
1108
1141
|
class GuardrailAutomatedReasoningPolicyAssessmentTypeDef(TypedDict):
|
|
1109
1142
|
findings: NotRequired[list[GuardrailAutomatedReasoningFindingTypeDef]]
|
|
@@ -1183,6 +1216,7 @@ class ContentBlockTypeDef(TypedDict):
|
|
|
1183
1216
|
cachePoint: NotRequired[CachePointBlockTypeDef]
|
|
1184
1217
|
reasoningContent: NotRequired[ReasoningContentBlockUnionTypeDef]
|
|
1185
1218
|
citationsContent: NotRequired[CitationsContentBlockUnionTypeDef]
|
|
1219
|
+
searchResult: NotRequired[SearchResultBlockUnionTypeDef]
|
|
1186
1220
|
|
|
1187
1221
|
class ConverseStreamMetadataEventTypeDef(TypedDict):
|
|
1188
1222
|
usage: TokenUsageTypeDef
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-bedrock-runtime
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 BedrockRuntime 1.
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 BedrockRuntime 1.41.0 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3 BedrockRuntime 1.
|
|
46
|
+
[boto3 BedrockRuntime 1.41.0](https://pypi.org/project/boto3/) compatible with
|
|
47
47
|
[VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
105
105
|
isolation.
|
|
106
106
|
|
|
107
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
108
|
-
`uvx --with 'boto3==1.
|
|
108
|
+
`uvx --with 'boto3==1.41.0' mypy-boto3-builder`
|
|
109
109
|
2. Select `boto3` AWS SDK.
|
|
110
110
|
3. Add `BedrockRuntime` service.
|
|
111
111
|
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=o6fRCHahJMnXGGTFbnv6VvVZIsq1K6lGLygsrcIvtBw,1012
|
|
4
|
+
types_boto3_bedrock_runtime/client.py,sha256=gN_nm5GKPuUjmMh_qvJGHuSNHcm5-ui7FPQ3KyWiAxc,9982
|
|
5
|
+
types_boto3_bedrock_runtime/client.pyi,sha256=Ypg7CxQjo36qHy8fF2l6-cT9SIfHDxZNeVzCQNAccyE,9979
|
|
6
|
+
types_boto3_bedrock_runtime/literals.py,sha256=NSeZhnMiQpRwLD27S3ZBs1VREWaoFs9-fdC7dOAhVG0,13584
|
|
7
|
+
types_boto3_bedrock_runtime/literals.pyi,sha256=VtuXw_ooM09XsL0oa3brn2tClJElDg3UECmhUoyXHqI,13582
|
|
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=gt2BmOvu_u_MQBa2nTw7E1qPlNgQRL2mUdxgzsQB49Q,45648
|
|
12
|
+
types_boto3_bedrock_runtime/type_defs.pyi,sha256=vd7tTkrNFRqYcOAr_NC_-lPW-Vp1pflf-PrZLJIbzUo,45485
|
|
13
|
+
types_boto3_bedrock_runtime/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
+
types_boto3_bedrock_runtime-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_bedrock_runtime-1.41.0.dist-info/METADATA,sha256=xxH21lk-zJF6yvSLey6gD_GXffReKO1IwHNWXG5U9oI,15065
|
|
16
|
+
types_boto3_bedrock_runtime-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_bedrock_runtime-1.41.0.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
|
|
18
|
+
types_boto3_bedrock_runtime-1.41.0.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=uQzEGXQVhkFSXLsiRSVSt2o-9ufJV1GsnDBbQMAWLWE,1015
|
|
4
|
-
types_boto3_bedrock_runtime/client.py,sha256=gN_nm5GKPuUjmMh_qvJGHuSNHcm5-ui7FPQ3KyWiAxc,9982
|
|
5
|
-
types_boto3_bedrock_runtime/client.pyi,sha256=Ypg7CxQjo36qHy8fF2l6-cT9SIfHDxZNeVzCQNAccyE,9979
|
|
6
|
-
types_boto3_bedrock_runtime/literals.py,sha256=-FdNiYBU72SK2YVDZLBdYAbsH5OyLcNMJsFBDh6Vgio,13540
|
|
7
|
-
types_boto3_bedrock_runtime/literals.pyi,sha256=xOKXw78u5UqA8iax-nYuE3gEoKQr5cQ3xiEoUZcKjTQ,13538
|
|
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=zb5TPkMA_FmDgpvYPD88k9iZQEuJbzsGo2cmPe2mE4I,44397
|
|
12
|
-
types_boto3_bedrock_runtime/type_defs.pyi,sha256=MWox54Xjl1755gB8baZRedzxe9JzM-EOxIX7BG8eaUY,44238
|
|
13
|
-
types_boto3_bedrock_runtime/version.py,sha256=VE_SsO5zPUepnGA5xToz9iD9MkBKqmg69Jq6fzwikrk,93
|
|
14
|
-
types_boto3_bedrock_runtime-1.40.76.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_bedrock_runtime-1.40.76.dist-info/METADATA,sha256=WyDc5doEyW1SsVLR096JAH39-7JaSowXoZxlB4AQBnM,15069
|
|
16
|
-
types_boto3_bedrock_runtime-1.40.76.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
types_boto3_bedrock_runtime-1.40.76.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
|
|
18
|
-
types_boto3_bedrock_runtime-1.40.76.dist-info/RECORD,,
|
{types_boto3_bedrock_runtime-1.40.76.dist-info → types_boto3_bedrock_runtime-1.41.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|