mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-16 23:52:40 -06:00
0bcb4c95c1
Adds the bundled Inworld speech provider with docs, config surface, SSRF-guarded fetches, directive overrides, native voice-note/telephony output coverage, and live `.profile` verification. Co-authored-by: cshape <cshape@users.noreply.github.com>
12 lines
355 B
TypeScript
12 lines
355 B
TypeScript
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());
|
|
},
|
|
});
|