brainy/examples/tests/test-statistics.js
David Snelling 58daf09403 feat: remove legacy ImportManager, standardize getStats() API
- Removed ImportManager class and exports (use brain.import() instead)
- Fixed all documentation: getStatistics() → getStats()
- Updated 41 files across codebase for consistency
- Removed ImportManager section from API docs
- Added v3.30.0 migration guide to CHANGELOG

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 11:40:31 -07:00

30 lines
No EOL
835 B
JavaScript

#!/usr/bin/env node
import { Brainy } from './dist/index.js'
const brain = new Brainy({
storage: { type: 'memory' },
verbose: false
})
await brain.init()
console.log('Adding 2 nouns...')
const id1 = await brain.addNoun('Test 1', { name: 'Test 1' })
const id2 = await brain.addNoun('Test 2', { name: 'Test 2' })
console.log('Getting statistics...')
const stats = brain.getStats()
console.log('\nStatistics after adding 2 nouns:')
console.log(' nounCount:', stats.nounCount)
console.log(' verbCount:', stats.verbCount)
console.log(' metadataCount:', stats.metadataCount)
// Also check the index directly
console.log('\nDirect index check:')
console.log(' Index size:', brain.index.getNouns().size)
console.log(' Metadata index size:', brain.metadataIndex?.getAllItems?.()?.length || 'N/A')
// Clean up
process.exit(0)