Files
openclaw/extensions/amazon-bedrock/index.ts
2026-06-04 07:11:24 -04:00

16 lines
522 B
TypeScript

/**
* Amazon Bedrock provider plugin entry. Registers runtime streaming, discovery,
* auth, thinking policy, guardrail, and memory embedding hooks.
*/
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { registerAmazonBedrockPlugin } from "./register.sync.runtime.js";
export default definePluginEntry({
id: "amazon-bedrock",
name: "Amazon Bedrock Provider",
description: "Bundled Amazon Bedrock provider policy plugin",
register(api) {
registerAmazonBedrockPlugin(api);
},
});