mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-04 15:50:20 +00:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import {
|
|
describeImageWithModel,
|
|
type MediaUnderstandingProvider,
|
|
} from "openclaw/plugin-sdk/media-understanding";
|
|
|
|
export const zaiMediaUnderstandingProvider: MediaUnderstandingProvider = {
|
|
id: "zai",
|
|
capabilities: ["image"],
|
|
describeImage: describeImageWithModel,
|
|
};
|