Minimal UI that:
- sends user input to the App API via
POST /api/interpret - renders assistant output and claim cards
cd frontend
npm install
npm run devThe dev server proxies /api/* to http://localhost:8070 (the app service).
cd ~/verisphere/app
python3 -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload --host 0.0.0.0 --port 8070Then open: http://localhost:5173