2026-03-17 00:14:01 -07:00
|
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
2026-03-16 21:13:56 -07:00
|
|
|
import { buildElevenLabsSpeechProvider } from "openclaw/plugin-sdk/speech";
|
2026-03-16 18:49:55 -07:00
|
|
|
|
2026-03-17 00:14:01 -07:00
|
|
|
export default definePluginEntry({
|
2026-03-16 18:49:55 -07:00
|
|
|
id: "elevenlabs",
|
|
|
|
|
name: "ElevenLabs Speech",
|
|
|
|
|
description: "Bundled ElevenLabs speech provider",
|
2026-03-17 00:14:01 -07:00
|
|
|
register(api) {
|
2026-03-16 18:49:55 -07:00
|
|
|
api.registerSpeechProvider(buildElevenLabsSpeechProvider());
|
|
|
|
|
},
|
2026-03-17 00:14:01 -07:00
|
|
|
});
|