mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 10:39:33 +00:00
13 lines
455 B
TypeScript
13 lines
455 B
TypeScript
// Elevenlabs API module exposes the plugin public contract.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { migrateElevenLabsLegacyTalkConfig } from "./config-compat.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "elevenlabs",
|
|
name: "ElevenLabs Setup",
|
|
description: "Lightweight ElevenLabs setup hooks",
|
|
register(api) {
|
|
api.registerConfigMigration((config) => migrateElevenLabsLegacyTalkConfig(config));
|
|
},
|
|
});
|