mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 15:03:46 +00:00
Implement full examples package with DSPy integration, generators, tutorials, and tests. Major Features: ✅ DSPy Training & Benchmarking (2,200+ lines) - Multi-model training session with 4 model agents - BootstrapFewShot and MIPROv2 optimization - Comprehensive benchmarking suite ✅ 5 Production Generators (2,080+ lines) - Self-learning with feedback loops - Stock market simulation with OHLCV data - Security testing with vulnerabilities - CI/CD pipeline data generation - Multi-agent swarm coordination ✅ 6 Progressive Tutorials (2,218+ lines) - Beginner: First training, simple generation - Intermediate: Multi-model comparison, self-learning - Advanced: Custom systems, production pipelines ✅ Comprehensive Test Suite (2,120+ lines, 250+ tests) - DSPy training and benchmark tests - Generator unit and integration tests - 80%+ coverage targets - Modern async/await patterns ✅ Documentation & Configuration - 496-line comprehensive README - Test suite documentation (930+ lines) - CLI tool with interactive commands - Build configuration (tsup, vitest, tsconfig) Technical Implementation: - Total: ~9,000+ lines of production code - TypeScript with strict mode - Event-driven architecture - Full ESM/CJS dual build support - Local package linking for development Package ready for npm publication with complete working examples.
22 lines
549 B
JSON
22 lines
549 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "tests"]
|
|
}
|