Files
openclaw/extensions/azure-speech/index.ts
2026-04-26 01:42:51 +01:00

12 lines
352 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { buildAzureSpeechProvider } from "./speech-provider.js";
export default definePluginEntry({
id: "azure-speech",
name: "Azure Speech",
description: "Bundled Azure Speech provider",
register(api) {
api.registerSpeechProvider(buildAzureSpeechProvider());
},
});