Add LICENSE, README, and Docs tab to Mission Control

This commit is contained in:
root
2026-02-22 07:33:18 +00:00
parent 3e7b457d5f
commit 0817444dc5
68 changed files with 6677 additions and 1673 deletions
+13
View File
@@ -0,0 +1,13 @@
import { generateSiteMenteText } from './lib/ai/geminiClient';
async function test() {
try {
const result = await generateSiteMenteText([{role: 'user', content: 'Hello'}]);
console.log('Success:', JSON.stringify(result));
} catch (e: any) {
console.error('Error:', e.message);
console.error(e);
}
}
test();