Files
openclaw/extensions/deepgram/index.ts
2026-06-04 21:02:07 -04:00

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());
},
});