first commit
This commit is contained in:
Executable
+18
@@ -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);
|
||||
});
|
||||
Reference in New Issue
Block a user