mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 14:00:51 +00:00
12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/core";
|
|
import { buildMicrosoftSpeechProvider } from "openclaw/plugin-sdk/speech";
|
|
|
|
export default definePluginEntry({
|
|
id: "microsoft",
|
|
name: "Microsoft Speech",
|
|
description: "Bundled Microsoft speech provider",
|
|
register(api) {
|
|
api.registerSpeechProvider(buildMicrosoftSpeechProvider());
|
|
},
|
|
});
|