@just-every/ensemble
Version:
LLM provider abstraction layer with unified streaming interface
12 lines • 509 B
TypeScript
export declare const FUNCTION_TIMEOUT_MS = 30000;
export declare const EXCLUDED_FROM_TIMEOUT_FUNCTIONS: Set<string>;
export declare const STATUS_TRACKING_TOOLS: Set<string>;
export declare const MAX_RESULT_LENGTH = 5000;
export declare const SKIP_SUMMARIZATION_TOOLS: Set<string>;
export interface ToolConfig {
skipSummarization?: boolean;
maxLength?: number;
truncationMessage?: string;
}
export declare const TOOL_CONFIGS: Record<string, ToolConfig>;
//# sourceMappingURL=tool_execution.d.ts.map