mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-20 13:13:06 +00:00
16 lines
473 B
TypeScript
16 lines
473 B
TypeScript
import {
|
|
describeImageWithModel,
|
|
describeImagesWithModel,
|
|
type MediaUnderstandingProvider,
|
|
} from "openclaw/plugin-sdk/media-understanding";
|
|
|
|
export const anthropicMediaUnderstandingProvider: MediaUnderstandingProvider = {
|
|
id: "anthropic",
|
|
capabilities: ["image"],
|
|
defaultModels: { image: "claude-opus-4-6" },
|
|
autoPriority: { image: 20 },
|
|
nativeDocumentInputs: ["pdf"],
|
|
describeImage: describeImageWithModel,
|
|
describeImages: describeImagesWithModel,
|
|
};
|