2026-03-17 00:14:01 -07:00
|
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
2026-03-16 21:13:56 -07:00
|
|
|
import { buildMicrosoftSpeechProvider } 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: "microsoft",
|
|
|
|
|
name: "Microsoft Speech",
|
|
|
|
|
description: "Bundled Microsoft speech provider",
|
2026-03-17 00:14:01 -07:00
|
|
|
register(api) {
|
2026-03-16 18:49:55 -07:00
|
|
|
api.registerSpeechProvider(buildMicrosoftSpeechProvider());
|
|
|
|
|
},
|
2026-03-17 00:14:01 -07:00
|
|
|
});
|