fix: update all imports and references from BrainyData to Brainy
- 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
This commit is contained in:
parent
791fac54cd
commit
196690863d
77 changed files with 328 additions and 331 deletions
|
|
@ -7,7 +7,7 @@
|
|||
* Focus on HIGH-IMPACT validation that proves the system is ready for release.
|
||||
*/
|
||||
|
||||
import { BrainyData } from './dist/index.js'
|
||||
import { Brainy } from './dist/index.js'
|
||||
import { performance } from 'perf_hooks'
|
||||
|
||||
console.log('🚀 Brainy 2.0 - Production Validation Suite')
|
||||
|
|
@ -19,7 +19,7 @@ const testConfig = {
|
|||
verbose: false
|
||||
}
|
||||
|
||||
const brain = new BrainyData(testConfig)
|
||||
const brain = new Brainy(testConfig)
|
||||
|
||||
// Validation results tracking
|
||||
const results = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue