Enterprise GenAI orchestration platform: multi-agent AI, RAG, local LLM support, MLOps tooling. Next.js/TypeScript frontend; demo data and core logic run client-side.
Live: GitHub Pages
- Agent routing (Researcher, Coder, Analyst) with task delegation
- Context sharing and coordinated execution
- Streaming responses
- Hybrid search (semantic + keyword/BM25)
- Chunking and metadata filtering
- Private data support
- LLaMA, Mistral, GPT4All, etc.
- Local inference; optional cloud toggle
- On-prem option for sensitive data
- LoRA, QLoRA, PEFT
- Pipeline from data to deployment
- Model registry (versioning, lifecycle)
- A/B testing (t-test, chi-square, Mann-Whitney; sample size)
- Experiment tracking (MLflow-like; params/metrics)
- Model monitoring (drift, performance)
- Dashboards (Recharts)
- Data profiling
- Statistical tests, time series
- Frontend: Next.js 14 (App Router), TypeScript 5.3, React 18.3, Tailwind, Framer Motion, Recharts
- Data: Client-side generation, localStorage persistence, cross-tab sync
- No backend required for core demo features
Prerequisites: Node.js 18+, npm or yarn
git clone <repository-url>
cd LangChain_Enterprise_Dashboard
npm install
npm run devApp: http://localhost:3000
Build: npm run build then npm start
- Features: Multi-agent (
/multi-agent), RAG (/rag), A/B testing (/ab-testing), Experiments (/experiments), Registry (/registry) - What’s real vs simulated: docs/WHAT_IS_REAL.md
- Full index: docs/README.md
- Enterprise GenAI apps (secure, scalable)
- R&D and prototyping
- Data analysis and dashboards
- MLOps lifecycle
- Local/private LLM deployment
├── app/ # Next.js app
├── components/ # React + page components
├── lib/ # ab-testing, experiment-tracking, demo-data-generator, persistence
└── public/
MIT — see LICENSE.
Drake Talley