openclaw/extensions/anthropic/index.ts

12 lines
359 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
export default definePluginEntry({
id: "anthropic",
name: "Anthropic Provider",
description: "Bundled Anthropic provider plugin",
async register(api) {
const { registerAnthropicPlugin } = await import("./register.runtime.js");
await registerAnthropicPlugin(api);
},
});