import type { MediaUnderstandingModelConfig } from "../config/types.tools.js"; import { normalizeMediaProviderId } from "./provider-id.js"; import type {
MediaUnderstandingCapability,
MediaUnderstandingCapabilityRegistry,
} from "./types.js";
const MEDIA_CAPABILITIES = ["audio", "image", "video"] as const;
function isMediaCapability(value: unknown): value is MediaUnderstandingCapability { returntypeof value === "string" && (MEDIA_CAPABILITIES as readonly string[]).includes(value);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.