mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-18 12:51:36 +00:00
12 lines
453 B
TypeScript
12 lines
453 B
TypeScript
// Deepgram provider module implements model/runtime integration.
|
|
import type { MediaUnderstandingProvider } from "openclaw/plugin-sdk/media-understanding";
|
|
import { transcribeDeepgramAudio } from "./audio.js";
|
|
|
|
export const deepgramMediaUnderstandingProvider: MediaUnderstandingProvider = {
|
|
id: "deepgram",
|
|
capabilities: ["audio"],
|
|
defaultModels: { audio: "nova-3" },
|
|
autoPriority: { audio: 30 },
|
|
transcribeAudio: transcribeDeepgramAudio,
|
|
};
|