@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines (10 loc) • 359 B
TypeScript
import type { MsgContext } from "../auto-reply/templating.js";
import type { OpenClawConfig } from "../config/config.js";
export type ApplyLinkUnderstandingResult = {
outputs: string[];
urls: string[];
};
export declare function applyLinkUnderstanding(params: {
ctx: MsgContext;
cfg: OpenClawConfig;
}): Promise<ApplyLinkUnderstandingResult>;