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 = NULL,
system = NULL,
inferenceConfig = NULL,
toolConfig = NULL,
guardrailConfig = NULL,
additionalModelRequestFields = NULL,
promptVariables = NULL,
additionalModelResponseFieldPaths = NULL,
requestMetadata = NULL,
performanceConfig = NULL
)
modelId |
[required] Specifies the model or throughput with which to run inference, or the prompt resource to use in inference. The value depends on the resource that you use:
The Converse API doesn't support imported models. |
messages |
The messages that you want to send to the model. |
system |
A prompt that provides instructions or context to the model about the task it should perform, or the persona it should adopt during the conversation. |
inferenceConfig |
Inference parameters to pass to the model.
|
toolConfig |
Configuration information for the tools that the model can use when generating a response. For information about models that support streaming tool use, see Supported models and model features. |
guardrailConfig |
Configuration information for a guardrail that you want to use in the
request. If you include |
additionalModelRequestFields |
Additional inference parameters that the model supports, beyond the base
set of inference parameters that |
promptVariables |
Contains a map of variables in a prompt from Prompt management to
objects containing the values to fill in for them when running model
invocation. This field is ignored if you don't specify a prompt resource
in the |
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.
|
requestMetadata |
Key-value pairs that you can use to filter invocation logs. |
performanceConfig |
Model performance settings for the request. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.