View source: R/bedrockruntime_operations.R
bedrockruntime_converse | R Documentation |
Sends messages to the specified Amazon Bedrock model. converse
provides a consistent interface that works with all models that support messages. This allows you to write code once and use it with different models. If a model has unique inference parameters, you can also pass those unique parameters to the model.
See https://www.paws-r-sdk.com/docs/bedrockruntime_converse/ for full documentation.
bedrockruntime_converse(
modelId,
messages,
system = NULL,
inferenceConfig = NULL,
toolConfig = NULL,
guardrailConfig = NULL,
additionalModelRequestFields = NULL,
additionalModelResponseFieldPaths = NULL
)
modelId |
[required] The identifier for the model that you want to call. 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 pass 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, Cohere Command R, Cohere Command R+, and Mistral Large 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.