mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 05:20:36 +00:00
feat: add Deepgram audio transcription
Co-authored-by: Safzan Pirani <safzanpirani@users.noreply.github.com>
This commit is contained in:
8
src/media-understanding/providers/deepgram/index.ts
Normal file
8
src/media-understanding/providers/deepgram/index.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { MediaUnderstandingProvider } from "../../types.js";
|
||||
import { transcribeDeepgramAudio } from "./audio.js";
|
||||
|
||||
export const deepgramProvider: MediaUnderstandingProvider = {
|
||||
id: "deepgram",
|
||||
capabilities: ["audio"],
|
||||
transcribeAudio: transcribeDeepgramAudio,
|
||||
};
|
||||
Reference in New Issue
Block a user