refactor(media): move provider defaults into media metadata

This commit is contained in:
Peter Steinberger
2026-04-04 07:00:35 +01:00
parent fca80d2ee2
commit 3a3f88a80a
26 changed files with 308 additions and 148 deletions

View File

@@ -4,5 +4,7 @@ import { transcribeDeepgramAudio } from "./audio.js";
export const deepgramMediaUnderstandingProvider: MediaUnderstandingProvider = {
id: "deepgram",
capabilities: ["audio"],
defaultModels: { audio: "nova-3" },
autoPriority: { audio: 30 },
transcribeAudio: transcribeDeepgramAudio,
};