You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When set, the parsed JSON object is stored in `reply.meta["structured_output"]`.
1223
+
You can find the model specific arguments in the AWS Bedrock API[documentation](https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html).
1224
+
1187
1225
-**streaming_callback** (<code>StreamingCallbackT | None</code>) – A callback function called when a new token is received from the stream.
1188
1226
By default, the model is not set up for streaming. To enable streaming, set this parameter to a callback
1189
1227
function that handles the streaming chunks. The callback function receives a
1190
1228
[StreamingChunk](https://docs.haystack.deepset.ai/docs/data-classes#streamingchunk) object and switches
1191
1229
the streaming mode on.
1230
+
1192
1231
-**boto3_config** (<code>dict\[str, Any\] | None</code>) – Dictionary of configuration options for the underlying Boto3 client.
1193
1232
Can be used to tune [retry behavior](https://docs.aws.amazon.com/boto3/latest/guide/retries.html)
1194
1233
and other low-level settings like timeouts and connection management.
1234
+
1195
1235
-**tools** (<code>ToolsType | None</code>) – A list of Tool and/or Toolset objects, or a single Toolset for which the model can prepare calls.
1196
1236
Each tool should have a unique name.
1237
+
1197
1238
-**guardrail_config** (<code>dict\[str, str\] | None</code>) – Optional configuration for a guardrail that has been created in Amazon Bedrock.
1198
1239
This must be provided as a dictionary matching either
When set, the parsed JSON object is stored in `reply.meta["structured_output"]`.
1223
+
You can find the model specific arguments in the AWS Bedrock API[documentation](https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html).
1224
+
1187
1225
-**streaming_callback** (<code>StreamingCallbackT | None</code>) – A callback function called when a new token is received from the stream.
1188
1226
By default, the model is not set up for streaming. To enable streaming, set this parameter to a callback
1189
1227
function that handles the streaming chunks. The callback function receives a
1190
1228
[StreamingChunk](https://docs.haystack.deepset.ai/docs/data-classes#streamingchunk) object and switches
1191
1229
the streaming mode on.
1230
+
1192
1231
-**boto3_config** (<code>dict\[str, Any\] | None</code>) – Dictionary of configuration options for the underlying Boto3 client.
1193
1232
Can be used to tune [retry behavior](https://docs.aws.amazon.com/boto3/latest/guide/retries.html)
1194
1233
and other low-level settings like timeouts and connection management.
1234
+
1195
1235
-**tools** (<code>ToolsType | None</code>) – A list of Tool and/or Toolset objects, or a single Toolset for which the model can prepare calls.
1196
1236
Each tool should have a unique name.
1237
+
1197
1238
-**guardrail_config** (<code>dict\[str, str\] | None</code>) – Optional configuration for a guardrail that has been created in Amazon Bedrock.
1198
1239
This must be provided as a dictionary matching either
0 commit comments