main #11

Merged
mstoeck3 merged 66 commits from main into forensic-ai 2025-08-11 12:02:56 +00:00
Showing only changes of commit f09f519f46 - Show all commits

View File

@ -150,9 +150,6 @@ async function loadRawData(): Promise<ToolsData> {
console.error('ToolsDataSchema validation errors:');
error.errors.forEach((err, index) => {
console.error(`${index + 1}. Path: ${err.path.join('.')}, Error: ${err.message}`);
if (err.input !== undefined) {
console.error(` Received:`, typeof err.input === 'object' ? JSON.stringify(err.input, null, 2) : err.input);
}
});
} else {
console.error('Non-Zod validation error:', error);