feat(qwen): add qwen provider and video generation

This commit is contained in:
Peter Steinberger
2026-04-04 17:43:15 +01:00
parent 759373e887
commit e3ac0f43df
104 changed files with 2477 additions and 483 deletions

View File

@@ -1,11 +1,11 @@
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { registerAmazonBedrockPlugin } from "./register.runtime.js";
export default definePluginEntry({
id: "amazon-bedrock",
name: "Amazon Bedrock Provider",
description: "Bundled Amazon Bedrock provider policy plugin",
async register(api) {
const { registerAmazonBedrockPlugin } = await import("./register.runtime.js");
await registerAmazonBedrockPlugin(api);
register(api) {
registerAmazonBedrockPlugin(api);
},
});