/** * Small text/history-shaping tools: summarize_long_text, prune_conversation_history, * diff_only. Split out of ../tools.ts (see that file's history for why) — pure * relocation, no behavior change. * * batch_tool_calls stayed behind in tools.ts on purpose: it dispatches through the * full toolHandlers registry, so moving it here would form a real import cycle * (tools.ts -> this module for its handler, this module -> tools.ts for the registry) * instead of the one-directional imports every other split module has. */ import type { ToolDefinition, ToolHandler } from "../toolTypes"; export declare const TEXT_OPS_TOOL_DEFINITIONS: ToolDefinition[]; export declare const TEXT_OPS_TOOL_HANDLERS: Record; //# sourceMappingURL=text-ops.d.ts.map