mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:10:42 +00:00
12 lines
352 B
TypeScript
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());
|
|
},
|
|
});
|