Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🌐 Agentic World

AI Digital Twins trained on real user behavior, not LLM persona prompts.

Agentic World captures real user behavior from web sessions, clusters users into behavioral demographics, and deploys AI agents that autonomously QA-test new features before real users see them.

🏗️ Architecture

Chrome Extension → FastAPI Backend → SQLite Storage
                                   → NeMo Data Designer (synthetic augmentation)
                                   → Mistral/NVIDIA AI Pipeline
                                   → Playwright Agent Runner
                                   → Next.js Dashboard

🤖 Models Used

Mistral

  • Mistral Small 3.1 — Real-time agent decision loops (low latency click sequence replay)
  • Codestral — Auto-generates DOM interaction scripts from behavioral recordings
  • Mistral Medium 3 — Behavioral reasoning layer (understands why users hesitate)

NVIDIA

  • Llama-3.1-Nemotron-49B — Demographic inference from behavioral signals
  • NeMo Guardrails — Prevents destructive actions during QA testing
  • NeMo Data Designer — Generates synthetic behavioral session data at scale

📁 Project Structure

agentic-world/
├── chrome-extension/   # Manifest V3 Chrome extension for behavior capture
├── backend/            # FastAPI server with AI pipeline
└── dashboard/          # Next.js business analytics dashboard

🚀 Quick Start

Prerequisites

  • Python 3.11+
  • Node.js 18+
  • API keys for Mistral and NVIDIA

1. Backend

cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
playwright install chromium
cp .env.example .env
# Edit .env with your API keys
uvicorn main:app --reload --port 8000

2. Dashboard

cd dashboard
npm install
npm run dev
# Opens at http://localhost:3000

3. Chrome Extension

  1. Open chrome://extensions/ in Chrome
  2. Enable "Developer mode"
  3. Click "Load unpacked" → select the chrome-extension/ folder
  4. Browse any website — the extension captures your behavior

🔑 Environment Variables

MISTRAL_API_KEY=your_mistral_api_key
NVIDIA_API_KEY=your_nvidia_api_key

📊 Features

  • Real-time behavior capture — mouse movements, clicks, scroll velocity, hover duration, hesitation patterns, rage clicks
  • Behavioral clustering — automatically discovers user archetypes (Cautious Explorer, Power User, Scanner, etc.)
  • Synthetic data augmentation — NeMo Data Designer generates training data at scale
  • Autonomous QA agents — Playwright-powered digital twins that test your product
  • A/B test simulation — synthetic A/B results before real users touch your product
  • Insights dashboard — heatmaps, funnels, hesitation hotspots, AI-generated recommendations

About

AI Digital Twins trained on real user behavior, not LLM persona prompts. Agentic World captures real user behavior from web sessions, clusters users into behavioral demographics, and deploys AI agents that autonomously QA-test new features before real users see them.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages