moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { resolveSynthesizer } from '@waggle/wiki-compiler';
const s = await resolveSynthesizer();
console.log('Provider:', s.provider);
console.log('Model:', s.model);
if (s.provider !== 'echo') {
console.log('\nTesting live synthesis...');
const result = await s.synthesize('Summarize in 2 sentences: Waggle OS is an AI workspace platform with persistent memory built by Egzakta Group.');
console.log('Output:', result.slice(0, 300));
} else {
console.log('\nNo LLM available — echo mode.');
console.log('Set ANTHROPIC_API_KEY or WAGGLE_OLLAMA_URL for real synthesis.');
}