types-boto3-bedrock-runtime 1.42.31__py3-none-any.whl → 1.42.42__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.
@@ -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.42.31\n"
16
- "Version: 1.42.31\n"
15
+ "Type annotations for boto3 BedrockRuntime 1.42.42\n"
16
+ "Version: 1.42.42\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.42.31\n")
29
+ sys.stdout.write("1.42.42\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -56,6 +56,7 @@ __all__ = (
56
56
  "GuardrailWordPolicyActionType",
57
57
  "ImageFormatType",
58
58
  "ListAsyncInvokesPaginatorName",
59
+ "OutputFormatTypeType",
59
60
  "PaginatorName",
60
61
  "PerformanceConfigLatencyType",
61
62
  "ResourceServiceName",
@@ -153,6 +154,7 @@ GuardrailTraceType = Literal["disabled", "enabled", "enabled_full"]
153
154
  GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
154
155
  ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
155
156
  ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
157
+ OutputFormatTypeType = Literal["json_schema"]
156
158
  PerformanceConfigLatencyType = Literal["optimized", "standard"]
157
159
  ServiceTierTypeType = Literal["default", "flex", "priority", "reserved"]
158
160
  SortAsyncInvocationByType = Literal["SubmissionTime"]
@@ -55,6 +55,7 @@ __all__ = (
55
55
  "GuardrailWordPolicyActionType",
56
56
  "ImageFormatType",
57
57
  "ListAsyncInvokesPaginatorName",
58
+ "OutputFormatTypeType",
58
59
  "PaginatorName",
59
60
  "PerformanceConfigLatencyType",
60
61
  "ResourceServiceName",
@@ -151,6 +152,7 @@ GuardrailTraceType = Literal["disabled", "enabled", "enabled_full"]
151
152
  GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
152
153
  ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
153
154
  ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
155
+ OutputFormatTypeType = Literal["json_schema"]
154
156
  PerformanceConfigLatencyType = Literal["optimized", "standard"]
155
157
  ServiceTierTypeType = Literal["default", "flex", "priority", "reserved"]
156
158
  SortAsyncInvocationByType = Literal["SubmissionTime"]
@@ -206,6 +206,7 @@ __all__ = (
206
206
  "InvokeModelWithBidirectionalStreamResponseTypeDef",
207
207
  "InvokeModelWithResponseStreamRequestTypeDef",
208
208
  "InvokeModelWithResponseStreamResponseTypeDef",
209
+ "JsonSchemaDefinitionTypeDef",
209
210
  "ListAsyncInvokesRequestPaginateTypeDef",
210
211
  "ListAsyncInvokesRequestTypeDef",
211
212
  "ListAsyncInvokesResponseTypeDef",
@@ -216,6 +217,9 @@ __all__ = (
216
217
  "MessageUnionTypeDef",
217
218
  "ModelStreamErrorExceptionTypeDef",
218
219
  "ModelTimeoutExceptionTypeDef",
220
+ "OutputConfigTypeDef",
221
+ "OutputFormatStructureTypeDef",
222
+ "OutputFormatTypeDef",
219
223
  "PaginatorConfigTypeDef",
220
224
  "PayloadPartTypeDef",
221
225
  "PerformanceConfigurationTypeDef",
@@ -648,6 +652,12 @@ class ModelTimeoutExceptionTypeDef(TypedDict):
648
652
  message: NotRequired[str]
649
653
 
650
654
 
655
+ class JsonSchemaDefinitionTypeDef(TypedDict):
656
+ schema: str
657
+ name: NotRequired[str]
658
+ description: NotRequired[str]
659
+
660
+
651
661
  class PaginatorConfigTypeDef(TypedDict):
652
662
  MaxItems: NotRequired[int]
653
663
  PageSize: NotRequired[int]
@@ -926,6 +936,10 @@ class InvokeModelWithBidirectionalStreamOutputTypeDef(TypedDict):
926
936
  serviceUnavailableException: NotRequired[ServiceUnavailableExceptionTypeDef]
927
937
 
928
938
 
939
+ class OutputFormatStructureTypeDef(TypedDict):
940
+ jsonSchema: NotRequired[JsonSchemaDefinitionTypeDef]
941
+
942
+
929
943
  class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
930
944
  submitTimeAfter: NotRequired[TimestampTypeDef]
931
945
  submitTimeBefore: NotRequired[TimestampTypeDef]
@@ -993,6 +1007,7 @@ class ToolSpecificationTypeDef(TypedDict):
993
1007
  name: str
994
1008
  inputSchema: ToolInputSchemaTypeDef
995
1009
  description: NotRequired[str]
1010
+ strict: NotRequired[bool]
996
1011
 
997
1012
 
998
1013
  ToolUseBlockUnionTypeDef = Union[ToolUseBlockTypeDef, ToolUseBlockOutputTypeDef]
@@ -1167,6 +1182,15 @@ class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
1167
1182
  ResponseMetadata: ResponseMetadataTypeDef
1168
1183
 
1169
1184
 
1185
+ OutputFormatTypeDef = TypedDict(
1186
+ "OutputFormatTypeDef",
1187
+ {
1188
+ "type": Literal["json_schema"],
1189
+ "structure": OutputFormatStructureTypeDef,
1190
+ },
1191
+ )
1192
+
1193
+
1170
1194
  class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
1171
1195
  body: EventStream[ResponseStreamTypeDef]
1172
1196
  contentType: str
@@ -1282,6 +1306,10 @@ class GuardrailAutomatedReasoningTranslationAmbiguousFindingTypeDef(TypedDict):
1282
1306
  differenceScenarios: NotRequired[list[GuardrailAutomatedReasoningScenarioTypeDef]]
1283
1307
 
1284
1308
 
1309
+ class OutputConfigTypeDef(TypedDict):
1310
+ textFormat: NotRequired[OutputFormatTypeDef]
1311
+
1312
+
1285
1313
  class ToolConfigurationTypeDef(TypedDict):
1286
1314
  tools: Sequence[ToolTypeDef]
1287
1315
  toolChoice: NotRequired[ToolChoiceTypeDef]
@@ -1530,6 +1558,7 @@ class ConverseRequestTypeDef(TypedDict):
1530
1558
  requestMetadata: NotRequired[Mapping[str, str]]
1531
1559
  performanceConfig: NotRequired[PerformanceConfigurationTypeDef]
1532
1560
  serviceTier: NotRequired[ServiceTierTypeDef]
1561
+ outputConfig: NotRequired[OutputConfigTypeDef]
1533
1562
 
1534
1563
 
1535
1564
  class ConverseStreamRequestTypeDef(TypedDict):
@@ -1545,6 +1574,7 @@ class ConverseStreamRequestTypeDef(TypedDict):
1545
1574
  requestMetadata: NotRequired[Mapping[str, str]]
1546
1575
  performanceConfig: NotRequired[PerformanceConfigurationTypeDef]
1547
1576
  serviceTier: NotRequired[ServiceTierTypeDef]
1577
+ outputConfig: NotRequired[OutputConfigTypeDef]
1548
1578
 
1549
1579
 
1550
1580
  class ConverseTokensRequestTypeDef(TypedDict):
@@ -205,6 +205,7 @@ __all__ = (
205
205
  "InvokeModelWithBidirectionalStreamResponseTypeDef",
206
206
  "InvokeModelWithResponseStreamRequestTypeDef",
207
207
  "InvokeModelWithResponseStreamResponseTypeDef",
208
+ "JsonSchemaDefinitionTypeDef",
208
209
  "ListAsyncInvokesRequestPaginateTypeDef",
209
210
  "ListAsyncInvokesRequestTypeDef",
210
211
  "ListAsyncInvokesResponseTypeDef",
@@ -215,6 +216,9 @@ __all__ = (
215
216
  "MessageUnionTypeDef",
216
217
  "ModelStreamErrorExceptionTypeDef",
217
218
  "ModelTimeoutExceptionTypeDef",
219
+ "OutputConfigTypeDef",
220
+ "OutputFormatStructureTypeDef",
221
+ "OutputFormatTypeDef",
218
222
  "PaginatorConfigTypeDef",
219
223
  "PayloadPartTypeDef",
220
224
  "PerformanceConfigurationTypeDef",
@@ -590,6 +594,11 @@ GuardrailTopicTypeDef = TypedDict(
590
594
  class ModelTimeoutExceptionTypeDef(TypedDict):
591
595
  message: NotRequired[str]
592
596
 
597
+ class JsonSchemaDefinitionTypeDef(TypedDict):
598
+ schema: str
599
+ name: NotRequired[str]
600
+ description: NotRequired[str]
601
+
593
602
  class PaginatorConfigTypeDef(TypedDict):
594
603
  MaxItems: NotRequired[int]
595
604
  PageSize: NotRequired[int]
@@ -836,6 +845,9 @@ class InvokeModelWithBidirectionalStreamOutputTypeDef(TypedDict):
836
845
  modelTimeoutException: NotRequired[ModelTimeoutExceptionTypeDef]
837
846
  serviceUnavailableException: NotRequired[ServiceUnavailableExceptionTypeDef]
838
847
 
848
+ class OutputFormatStructureTypeDef(TypedDict):
849
+ jsonSchema: NotRequired[JsonSchemaDefinitionTypeDef]
850
+
839
851
  class ListAsyncInvokesRequestPaginateTypeDef(TypedDict):
840
852
  submitTimeAfter: NotRequired[TimestampTypeDef]
841
853
  submitTimeBefore: NotRequired[TimestampTypeDef]
@@ -895,6 +907,7 @@ class ToolSpecificationTypeDef(TypedDict):
895
907
  name: str
896
908
  inputSchema: ToolInputSchemaTypeDef
897
909
  description: NotRequired[str]
910
+ strict: NotRequired[bool]
898
911
 
899
912
  ToolUseBlockUnionTypeDef = Union[ToolUseBlockTypeDef, ToolUseBlockOutputTypeDef]
900
913
 
@@ -1046,6 +1059,14 @@ class InvokeModelWithBidirectionalStreamResponseTypeDef(TypedDict):
1046
1059
  body: EventStream[InvokeModelWithBidirectionalStreamOutputTypeDef]
1047
1060
  ResponseMetadata: ResponseMetadataTypeDef
1048
1061
 
1062
+ OutputFormatTypeDef = TypedDict(
1063
+ "OutputFormatTypeDef",
1064
+ {
1065
+ "type": Literal["json_schema"],
1066
+ "structure": OutputFormatStructureTypeDef,
1067
+ },
1068
+ )
1069
+
1049
1070
  class InvokeModelWithResponseStreamResponseTypeDef(TypedDict):
1050
1071
  body: EventStream[ResponseStreamTypeDef]
1051
1072
  contentType: str
@@ -1146,6 +1167,9 @@ class GuardrailAutomatedReasoningTranslationAmbiguousFindingTypeDef(TypedDict):
1146
1167
  options: NotRequired[list[GuardrailAutomatedReasoningTranslationOptionTypeDef]]
1147
1168
  differenceScenarios: NotRequired[list[GuardrailAutomatedReasoningScenarioTypeDef]]
1148
1169
 
1170
+ class OutputConfigTypeDef(TypedDict):
1171
+ textFormat: NotRequired[OutputFormatTypeDef]
1172
+
1149
1173
  class ToolConfigurationTypeDef(TypedDict):
1150
1174
  tools: Sequence[ToolTypeDef]
1151
1175
  toolChoice: NotRequired[ToolChoiceTypeDef]
@@ -1361,6 +1385,7 @@ class ConverseRequestTypeDef(TypedDict):
1361
1385
  requestMetadata: NotRequired[Mapping[str, str]]
1362
1386
  performanceConfig: NotRequired[PerformanceConfigurationTypeDef]
1363
1387
  serviceTier: NotRequired[ServiceTierTypeDef]
1388
+ outputConfig: NotRequired[OutputConfigTypeDef]
1364
1389
 
1365
1390
  class ConverseStreamRequestTypeDef(TypedDict):
1366
1391
  modelId: str
@@ -1375,6 +1400,7 @@ class ConverseStreamRequestTypeDef(TypedDict):
1375
1400
  requestMetadata: NotRequired[Mapping[str, str]]
1376
1401
  performanceConfig: NotRequired[PerformanceConfigurationTypeDef]
1377
1402
  serviceTier: NotRequired[ServiceTierTypeDef]
1403
+ outputConfig: NotRequired[OutputConfigTypeDef]
1378
1404
 
1379
1405
  class ConverseTokensRequestTypeDef(TypedDict):
1380
1406
  messages: NotRequired[Sequence[MessageUnionTypeDef]]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2026 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.42.31"
7
+ __version__ = "1.42.42"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-bedrock-runtime
3
- Version: 1.42.31
4
- Summary: Type annotations for boto3 BedrockRuntime 1.42.31 service generated with mypy-boto3-builder 8.12.0
3
+ Version: 1.42.42
4
+ Summary: Type annotations for boto3 BedrockRuntime 1.42.42 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3 BedrockRuntime 1.42.31](https://pypi.org/project/boto3/) compatible with
46
+ [boto3 BedrockRuntime 1.42.42](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.42.31' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.42.42' 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=-DyVw55D1A88qOLpLHfjUcLn-zOVEJ43iR6b712DD9o,774
2
+ types_boto3_bedrock_runtime/__init__.pyi,sha256=0Nc_Pc4lHAidgKO4DWWplZJY_rkMTqfnx8aSg1cvmt0,773
3
+ types_boto3_bedrock_runtime/__main__.py,sha256=8vWwL-u4lBgkbRR63XXFNuWCoTjTU3NXWEey6aEF4ts,1015
4
+ types_boto3_bedrock_runtime/client.py,sha256=76fDOgQQIseISNHldI3rbHAg8l7LKrS52ZqV9hdNExA,9982
5
+ types_boto3_bedrock_runtime/client.pyi,sha256=-BwqbC4mbxy-qw05z-0Vpmr_fmXoMcUsVeWYwd9s9UU,9979
6
+ types_boto3_bedrock_runtime/literals.py,sha256=LPCZf_lWKz31iAmG1ZQePvG8nTPZmE0hmq45yDPYMco,14336
7
+ types_boto3_bedrock_runtime/literals.pyi,sha256=peY6mxBlVVDTdJK4H7CBzwvhbQvP9gQU3jP3OP-S-uU,14334
8
+ types_boto3_bedrock_runtime/paginator.py,sha256=rRuINxW2zIv-_spOa4C1Qtq-bTElhAus8Ob1rqFFl3E,2194
9
+ types_boto3_bedrock_runtime/paginator.pyi,sha256=Umt4lIjKlUK0HabZ7PkSPP_7kfFgfpxJIe8_whFgrFA,2190
10
+ types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_bedrock_runtime/type_defs.py,sha256=E83Ys5gp12vszD_zE7ayL6P53cd64JM_vvCWAdwgiN4,48959
12
+ types_boto3_bedrock_runtime/type_defs.pyi,sha256=0Cp5EU2WLobzQWJ22-kAVa93gX_6-F9cof9p67KYZeU,48782
13
+ types_boto3_bedrock_runtime/version.py,sha256=e6HoYfetC3qcC0gAdQCVrDkrRgu8bjbOwNSmZtKJDJE,93
14
+ types_boto3_bedrock_runtime-1.42.42.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
15
+ types_boto3_bedrock_runtime-1.42.42.dist-info/METADATA,sha256=okBc72EzDofPfj6GaoxZtvd0DK8W1n4p75UVP_3sEX8,15078
16
+ types_boto3_bedrock_runtime-1.42.42.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
17
+ types_boto3_bedrock_runtime-1.42.42.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
18
+ types_boto3_bedrock_runtime-1.42.42.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- types_boto3_bedrock_runtime/__init__.py,sha256=-DyVw55D1A88qOLpLHfjUcLn-zOVEJ43iR6b712DD9o,774
2
- types_boto3_bedrock_runtime/__init__.pyi,sha256=0Nc_Pc4lHAidgKO4DWWplZJY_rkMTqfnx8aSg1cvmt0,773
3
- types_boto3_bedrock_runtime/__main__.py,sha256=6pPM-sCuMBWic3yy-LwevsnHt3fyghlKHnzl4VmhbWc,1015
4
- types_boto3_bedrock_runtime/client.py,sha256=76fDOgQQIseISNHldI3rbHAg8l7LKrS52ZqV9hdNExA,9982
5
- types_boto3_bedrock_runtime/client.pyi,sha256=-BwqbC4mbxy-qw05z-0Vpmr_fmXoMcUsVeWYwd9s9UU,9979
6
- types_boto3_bedrock_runtime/literals.py,sha256=oSri4vY-ldfE2pWjW2e265MCSW-9-QSrRt1M2ZwNzw4,14262
7
- types_boto3_bedrock_runtime/literals.pyi,sha256=VH39hkQD8p7FBHYeEWyEGn30-ZM7r5hxfTSSiBZquag,14260
8
- types_boto3_bedrock_runtime/paginator.py,sha256=rRuINxW2zIv-_spOa4C1Qtq-bTElhAus8Ob1rqFFl3E,2194
9
- types_boto3_bedrock_runtime/paginator.pyi,sha256=Umt4lIjKlUK0HabZ7PkSPP_7kfFgfpxJIe8_whFgrFA,2190
10
- types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_bedrock_runtime/type_defs.py,sha256=Wt_uZfZOn-31CtO_fNaWF0FCyD2aLAoLeHcb2nuzhko,48214
12
- types_boto3_bedrock_runtime/type_defs.pyi,sha256=ZzZsNd_fBQGcreasfZ2DMCcjihUN5XcN-hZvDNkedZk,48041
13
- types_boto3_bedrock_runtime/version.py,sha256=kOkP0vnOip6iNeQpu-chN8ssnI29wONUx3g-8iPrHOI,93
14
- types_boto3_bedrock_runtime-1.42.31.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
15
- types_boto3_bedrock_runtime-1.42.31.dist-info/METADATA,sha256=JONAcjVHcTwhPsxUr53GJiGQg3VeSGy5tldk0AKDlXY,15078
16
- types_boto3_bedrock_runtime-1.42.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- types_boto3_bedrock_runtime-1.42.31.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
18
- types_boto3_bedrock_runtime-1.42.31.dist-info/RECORD,,