Providers
Amazon Bedrock
Use the amazon_bedrock adapter when your Bedrock model uses Anthropic-style messages or a compatible message surface.
const { request } = await connector.createProviderContextRequest(
"amazon_bedrock",
{
task: "Prepare account memory for a Bedrock-hosted assistant.",
tokenBudget: 1600
},
{
model: "bedrock-model-id",
maxTokens: 1200,
input: "Summarize the next best action."
}
);
// Send `request` through your Bedrock client after applying any model-specific wrapper.
Bedrock model families can differ in request shape. Treat the SDK output as the Neutron memory-bearing message payload, then adapt it at your Bedrock boundary if your selected model requires a provider-specific wrapper.
Remote Anthropic MCP connector settings do not automatically apply to Bedrock-hosted models. Use backend-side Neutron context retrieval unless your Bedrock integration explicitly supports remote MCP tools.