mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 21:53:36 +00:00
13 lines
420 B
TypeScript
13 lines
420 B
TypeScript
// Inworld plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { buildInworldSpeechProvider } from "./speech-provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "inworld",
|
|
name: "Inworld Speech",
|
|
description: "Bundled Inworld speech provider",
|
|
register(api) {
|
|
api.registerSpeechProvider(buildInworldSpeechProvider());
|
|
},
|
|
});
|