mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 05:43:58 +00:00
Implement complete SONA system with: - LoRA-Ultra: Adaptive low-rank adaptation for efficient fine-tuning - Learning Loops: Instant, background, and coordinated learning modes - EWC++: Enhanced elastic weight consolidation for continual learning - ReasoningBank: Trajectory storage with verdict-based learning - WASM bindings for browser deployment - N-API bindings for Node.js integration - Comprehensive documentation and benchmarks New crate: crates/sona with full implementation Integration: examples/ruvLLM with SONA module NPM package: npm/packages/sona for JavaScript bindings 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
525 B
JSON
20 lines
525 B
JSON
{
|
|
"name": "sona-wasm-example",
|
|
"version": "0.1.0",
|
|
"description": "SONA WASM Example - Self-Optimizing Neural Architecture in the browser",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "cd .. && wasm-pack build --target web --features wasm --out-dir wasm-example/pkg",
|
|
"serve": "python3 -m http.server 8080",
|
|
"dev": "npm run build && npm run serve"
|
|
},
|
|
"keywords": [
|
|
"wasm",
|
|
"neural",
|
|
"learning",
|
|
"lora",
|
|
"adaptive"
|
|
],
|
|
"author": "RuVector Team",
|
|
"license": "MIT OR Apache-2.0"
|
|
}
|