mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-18 21:31:36 +00:00
16 lines
543 B
TypeScript
16 lines
543 B
TypeScript
/**
|
|
* Amazon Bedrock Mantle plugin entry. Registers the OpenAI-compatible Mantle
|
|
* provider plus Anthropic stream compatibility hooks.
|
|
*/
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { registerBedrockMantlePlugin } from "./register.sync.runtime.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "amazon-bedrock-mantle",
|
|
name: "Amazon Bedrock Mantle Provider",
|
|
description: "Bundled Amazon Bedrock Mantle (OpenAI-compatible) provider plugin",
|
|
register(api) {
|
|
registerBedrockMantlePlugin(api);
|
|
},
|
|
});
|