first commit

This commit is contained in:
2025-11-06 11:08:59 +01:00
commit 3c5117c2c3
85 changed files with 13275 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env node
// Simple test script to verify Groq integration
require('dotenv').config();
const { runAllTests } = require('./server/utils/testGroq');
console.log('🚀 Starting Groq Integration Test...\n');
runAllTests()
.then(results => {
console.log('\n✅ Test completed successfully!');
process.exit(0);
})
.catch(error => {
console.error('\n❌ Test failed:', error.message);
process.exit(1);
});