openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
15 lines (14 loc) • 523 B
TypeScript
import { i as OpenClawConfig } from "../types.openclaw-DBHlrrVj.js";
import { n as MsgContext } from "../templating-DE3RVG5z.js";
//#region src/link-understanding/apply.d.ts
type ApplyLinkUnderstandingResult = {
outputs: string[];
urls: string[];
};
/** Runs link understanding and folds successful outputs into the inbound context. */
declare function applyLinkUnderstanding(params: {
ctx: MsgContext;
cfg: OpenClawConfig;
}): Promise<ApplyLinkUnderstandingResult>;
//#endregion
export { applyLinkUnderstanding };