- Fixed imports in examples/tests/ to use correct Brainy import - Fixed imports in tests/benchmarks/ to use correct paths - Updated bin/brainy-interactive.js to use Brainy instead of BrainyData - Corrected documentation references throughout codebase - Removed duplicate imports in benchmark files - All files now consistently use 'Brainy' class from dist/index.js
41 lines
No EOL
1.3 KiB
JavaScript
41 lines
No EOL
1.3 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
// Check ONNX memory settings
|
|
console.log('ONNX Memory Settings:')
|
|
console.log('=====================')
|
|
console.log('ORT_DISABLE_MEMORY_ARENA:', process.env.ORT_DISABLE_MEMORY_ARENA)
|
|
console.log('ORT_DISABLE_MEMORY_PATTERN:', process.env.ORT_DISABLE_MEMORY_PATTERN)
|
|
console.log('ORT_INTRA_OP_NUM_THREADS:', process.env.ORT_INTRA_OP_NUM_THREADS)
|
|
console.log('ORT_INTER_OP_NUM_THREADS:', process.env.ORT_INTER_OP_NUM_THREADS)
|
|
|
|
// Now test with minimal embedding
|
|
import { Brainy } from './dist/index.js'
|
|
|
|
async function testMinimalSearch() {
|
|
try {
|
|
console.log('\nInitializing Brainy...')
|
|
const brain = new Brainy({
|
|
storage: { forceMemoryStorage: true },
|
|
verbose: false
|
|
})
|
|
await brain.init()
|
|
|
|
console.log('Adding one noun...')
|
|
await brain.addNoun({ name: 'Test' })
|
|
|
|
console.log('Memory before search:', (process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2), 'MB')
|
|
|
|
console.log('Performing minimal search...')
|
|
const results = await brain.search('test', { limit: 1 })
|
|
|
|
console.log('Memory after search:', (process.memoryUsage().heapUsed / 1024 / 1024).toFixed(2), 'MB')
|
|
console.log(`Found ${results.length} results`)
|
|
|
|
process.exit(0)
|
|
} catch (error) {
|
|
console.error('Failed:', error.message)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
testMinimalSearch() |