openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
14 lines (13 loc) • 441 B
JavaScript
//#region extensions/anthropic/media-understanding-provider.ts
/** Media-understanding provider for Anthropic Claude models. */
const anthropicMediaUnderstandingProvider = {
id: "anthropic",
capabilities: ["image"],
defaultModels: { image: "claude-opus-5" },
autoPriority: { image: 20 },
nativeDocumentInputs: ["pdf"],
describeImage: void 0,
describeImages: void 0
};
//#endregion
export { anthropicMediaUnderstandingProvider as t };