An ethical behavioral AI assistant that learns a user’s communication style patterns and generates style-aligned drafts.
backend/: FastAPI Python application for stylometry analysis and generation.frontend/: Next.js React application for the user interface.
- Navigate to
backend/. - Create virtual environment:
python -m venv venv. - Activate:
source venv/bin/activate. - Install dependencies:
pip install -r requirements.txt. - Download corpora:
python -m textblob.download_corpora - Run:
uvicorn main:app --reload
- Navigate to
frontend/. - Install dependencies:
npm install. - Run:
npm run dev. - Open
http://localhost:3000.
- Stylometry Engine: Analyzes sentence length, lexical diversity, formality, and sentiment.
- Style Dashboard: Visualizes your writing style fingerprint.
- Generation Engine: Creates drafts that match your specific style profile.