mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 20:34:31 +00:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import type { MediaUnderstandingProvider } from "../../types.js";
|
|
import { describeImageWithModel } from "../image.js";
|
|
|
|
export const anthropicProvider: MediaUnderstandingProvider = {
|
|
id: "anthropic",
|
|
capabilities: ["image"],
|
|
describeImage: describeImageWithModel,
|
|
};
|