mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 05:50:47 +00:00
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
import { emptyPluginConfigSchema, type OpenClawPluginApi } from "openclaw/plugin-sdk/core";
|
|
import { buildMicrosoftSpeechProvider } from "openclaw/plugin-sdk/speech";
|
|
|
|
const microsoftPlugin = {
|
|
id: "microsoft",
|
|
name: "Microsoft Speech",
|
|
description: "Bundled Microsoft speech provider",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: OpenClawPluginApi) {
|
|
api.registerSpeechProvider(buildMicrosoftSpeechProvider());
|
|
},
|
|
};
|
|
|
|
export default microsoftPlugin;
|