Files
2026-06-04 07:20:32 -04:00

17 lines
534 B
TypeScript

/**
* Azure Speech plugin entry. It registers the Azure text-to-speech provider for
* message voice output and voice-note generation.
*/
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { buildAzureSpeechProvider } from "./speech-provider.js";
/** Plugin entry for Azure Speech TTS. */
export default definePluginEntry({
id: "azure-speech",
name: "Azure Speech",
description: "Bundled Azure Speech provider",
register(api) {
api.registerSpeechProvider(buildAzureSpeechProvider());
},
});