@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
8 lines (7 loc) • 307 B
TypeScript
import type { AgentTool } from "@mariozechner/pi-agent-core";
export type ProcessToolDefaults = {
cleanupMs?: number;
scopeKey?: string;
};
export declare function createProcessTool(defaults?: ProcessToolDefaults): AgentTool<any, unknown>;
export declare const processTool: AgentTool<any, unknown>;