View source: R/bedrockruntime_operations.R
bedrockruntime_converse_stream | R Documentation |
Sends messages to the specified Amazon Bedrock model and returns the response in a stream. converse_stream
provides a consistent API that works with all Amazon Bedrock models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model.
See https://www.paws-r-sdk.com/docs/bedrockruntime_converse_stream/ for full documentation.
bedrockruntime_converse_stream(
modelId,
messages,
system = NULL,
inferenceConfig = NULL,
toolConfig = NULL,
guardrailConfig = NULL,
additionalModelRequestFields = NULL,
additionalModelResponseFieldPaths = NULL
)
modelId |
[required] The ID for the model. The
The Converse API doesn't support imported models. |
messages |
[required] The messages that you want to send to the model. |
system |
A system prompt to send to the model. |
inferenceConfig |
Inference parameters to pass to the model.
|
toolConfig |
Configuration information for the tools that the model can use when generating a response. This field is only supported by Anthropic Claude 3 models. |
guardrailConfig |
Configuration information for a guardrail that you want to use in the request. |
additionalModelRequestFields |
Additional inference parameters that the model supports, beyond the base
set of inference parameters that
|
additionalModelResponseFieldPaths |
Additional model parameters field paths to return in the response.
For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.