mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
15 lines
681 B
TypeScript
15 lines
681 B
TypeScript
// Deepgram plugin entrypoint registers its OpenClaw integration.
|
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { deepgramMediaUnderstandingProvider } from "./media-understanding-provider.js";
|
|
import { buildDeepgramRealtimeTranscriptionProvider } from "./realtime-transcription-provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "deepgram",
|
|
name: "Deepgram Media Understanding",
|
|
description: "Bundled Deepgram audio transcription provider",
|
|
register(api) {
|
|
api.registerMediaUnderstandingProvider(deepgramMediaUnderstandingProvider);
|
|
api.registerRealtimeTranscriptionProvider(buildDeepgramRealtimeTranscriptionProvider());
|
|
},
|
|
});
|