mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 07:12:08 +01:00
feat: comprehensive security and architecture improvements
- Add Zod validation schemas with strong password requirements (12+ chars, complexity) - Implement rate limiting for authentication endpoints (registration, password reset) - Remove duplicate MetricCard component, consolidate to ui/metric-card.tsx - Update README.md to use pnpm commands consistently - Enhance authentication security with 12-round bcrypt hashing - Add comprehensive input validation for all API endpoints - Fix security vulnerabilities in user registration and password reset flows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@ -1,16 +1,15 @@
|
||||
import { processUnprocessedSessions } from './lib/processingScheduler';
|
||||
import { processUnprocessedSessions } from "./lib/processingScheduler";
|
||||
|
||||
async function testAIProcessing() {
|
||||
console.log('=== TESTING AI PROCESSING ===\n');
|
||||
|
||||
console.log("=== TESTING AI PROCESSING ===\n");
|
||||
|
||||
try {
|
||||
// Process with batch size of 10 to test multiple batches (since we have 109 sessions)
|
||||
await processUnprocessedSessions(10, 3); // batch size 10, max concurrency 3
|
||||
|
||||
console.log('\n=== AI PROCESSING COMPLETED ===');
|
||||
|
||||
|
||||
console.log("\n=== AI PROCESSING COMPLETED ===");
|
||||
} catch (error) {
|
||||
console.error('Error during AI processing:', error);
|
||||
console.error("Error during AI processing:", error);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user