mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-11 09:11:13 +00:00
10 lines
463 B
TypeScript
10 lines
463 B
TypeScript
import { createLazyRuntimeMethodBinder, createLazyRuntimeModule } from "../shared/lazy-runtime.js";
|
|
|
|
const loadImageRuntime = createLazyRuntimeModule(() => import("./image.js"));
|
|
const bindImageRuntime = createLazyRuntimeMethodBinder(loadImageRuntime);
|
|
|
|
export const describeImageWithModel = bindImageRuntime((runtime) => runtime.describeImageWithModel);
|
|
export const describeImagesWithModel = bindImageRuntime(
|
|
(runtime) => runtime.describeImagesWithModel,
|
|
);
|