UNPKG

@bhagat-surya-dev/dashchat-database-manager

Version:

AI-powered database schema analysis and management library

11 lines 488 B
/** * Enhanced production-ready JSON parser that handles malformed JSON from LLMs * Uses jsonrepair library for robust parsing with size validation and multiple fallback strategies */ export declare function robustJsonParse(content: string, fallback?: any): any; /** * Legacy function for backward compatibility * @deprecated Use robustJsonParse instead */ export declare function safeJsonParse(content: string, fallback?: any): any; //# sourceMappingURL=robust_json_parser.d.ts.map