UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

12 lines (11 loc) 399 B
import type { OpenClawConfig } from "../config/config.js"; import type { MemorySearchManager } from "./types.js"; export type MemorySearchManagerResult = { manager: MemorySearchManager | null; error?: string; }; export declare function getMemorySearchManager(params: { cfg: OpenClawConfig; agentId: string; purpose?: "default" | "status"; }): Promise<MemorySearchManagerResult>;