UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

12 lines (11 loc) 369 B
import type { MsgContext } from "../auto-reply/templating.js"; import type { OpenClawConfig } from "../config/config.js"; export type LinkUnderstandingResult = { urls: string[]; outputs: string[]; }; export declare function runLinkUnderstanding(params: { cfg: OpenClawConfig; ctx: MsgContext; message?: string; }): Promise<LinkUnderstandingResult>;