@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
26 lines (25 loc) • 1.28 kB
TypeScript
/**
* Tool output preview generation.
* Generates head/tail previews of large tool outputs for context-efficient LLM calls.
* @module
*/
import type { ToolOutputPreviewOptions, ToolOutputPreviewResult } from "../types/index.js";
/** Default maximum preview size in bytes (50KB) */
export declare const DEFAULT_MAX_PREVIEW_BYTES: number;
/** Default maximum preview lines */
export declare const DEFAULT_MAX_PREVIEW_LINES = 2000;
/** Default head ratio (25% of preview budget) */
export declare const DEFAULT_HEAD_RATIO = 0.25;
/** Tool name referenced in truncation notices for on-demand full-output access */
export declare const RETRIEVE_CONTEXT_TOOL_NAME = "retrieve_context";
/** Default tail ratio (75% of preview budget) */
export declare const DEFAULT_TAIL_RATIO = 0.75;
/**
* Generate a head/tail preview of a tool output string.
* If the output is within limits, returns it unchanged with truncated: false.
* If over limits, keeps the first 25% and last 75% with an omission notice.
*
* Industry pattern: 25/75 head/tail split. Head captures schema/headers/structure,
* tail captures the most recent and typically most relevant data.
*/
export declare function generateToolOutputPreview(output: string, options?: ToolOutputPreviewOptions): ToolOutputPreviewResult;