🔗 Quick Demo: https://second-brain-a3.vercel.app/
Second Brain is an AI-powered reasoning platform that helps users explore possible career and life futures before making major decisions.
Unlike traditional questionnaires or generic AI chatbots, the platform discovers user goals, identifies hidden tradeoffs, and generates interactive scenario graphs that allow users to compare multiple paths, explore consequences, and ask dynamic "what-if" questions.
Landing Page
Users describe a career or life decision in natural language to begin the simulation process.
Scenario Graph
The Scenario Graph visualizes multiple possible futures, tradeoffs, risks, and branching outcomes generated by the AI reasoning engine.
What-If Expansion
Users can select any node and ask custom what-if questions to dynamically generate new branches and future possibilities.
git clone https://github.com/veyra34/Second-Brain.git
cd backendCreate environment variables:
cp .env.example .envAdd:
DATABASE_URL=your_database_url
OPENROUTER_API_KEY=your_openrouter_keyInstall dependencies:
python -m venv .venv
source .venv/bin/activateWindows:
.venv\Scripts\activateInstall packages:
pip install -r requirements.txtRun backend:
python main.pycd frontend
npm installCreate:
NEXT_PUBLIC_API_URL=http://localhost:8000Run:
npm run dev


