Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 13,304 Bytes
61d29fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 | ---
sidebar_position: 13
---
# React + FastAPI Databricks App Refactoring
## Executive Summary
The Oral Health Policy Pulse has been **completely refactored** from a CLI-based multi-agent system into a **modern full-stack web application** that deploys as a **Databricks App**.
### What Changed
| Before (v1.0) | After (v2.0) |
|---------------|--------------|
| β CLI-only interface | β
Modern React web UI |
| β Manual command execution | β
Interactive dashboard |
| β Text-based outputs | β
Visual charts & maps |
| β Local deployment only | β
Cloud-native Databricks Apps |
| β Static HTML heatmap | β
Interactive Leaflet map |
| β No user settings | β
Configurable UI settings |
---
## New Architecture
### Frontend (React + TypeScript)
**Technology Stack:**
- React 18.2 with TypeScript
- Vite for build tooling
- Tailwind CSS for styling
- React Router for navigation
- TanStack Query for data fetching
- Recharts for data visualization
- Leaflet for interactive maps
**Pages Created:**
1. **Dashboard** (`frontend/src/pages/Dashboard.tsx`)
- Real-time statistics cards
- Topic distribution bar/pie charts
- Recent opportunities table
2. **Interactive Heatmap** (`frontend/src/pages/Heatmap.tsx`)
- Geographic visualization using Leaflet
- State and topic filters
- Color-coded urgency markers
- Popup details for each opportunity
3. **Documents Browser** (`frontend/src/pages/Documents.tsx`)
- Full-text search
- Pagination
- Topic tags
- Direct links to source documents
4. **Opportunities Manager** (`frontend/src/pages/Opportunities.tsx`)
- Filterable list view
- Urgency-based sorting
- One-click email generation
- Talking points display
- Confidence score visualization
5. **Settings Panel** (`frontend/src/pages/Settings.tsx`)
- Target state configuration
- Policy topic selection
- Confidence threshold slider
- Email notification preferences
- Agent status monitoring
**Components:**
- **Layout** (`frontend/src/components/Layout.tsx`)
- Sidebar navigation
- Header with breadcrumbs
- Responsive design
### Backend (FastAPI Refactored)
**New File: `api/app.py`**
Completely rewritten FastAPI application optimized for:
- β
Serving React static files (SPA routing)
- β
REST API endpoints for all frontend interactions
- β
Databricks Apps compatibility
- β
Delta Lake integration
- β
Background task processing
- β
CORS support for local development
**Key Endpoints:**
```
GET /api/health # Health check
GET /api/dashboard # Dashboard stats
GET /api/opportunities # List opportunities
GET /api/documents # Browse documents
POST /api/workflow/start # Start analysis
POST /api/advocacy/email/{id} # Generate email
GET /api/settings # Get settings
PUT /api/settings # Update settings
GET /api/agents/status # Agent status
```
**Static File Serving:**
- React build output served from `api/static/`
- SPA routing with catchall route
- Automatic index.html fallback
### Database Layer
**New File: `pipeline/delta_lake_queries.py`**
Added async query methods to support web app:
```python
async def get_dashboard_stats() # Dashboard statistics
async def query_opportunities() # Filtered opportunity queries
async def query_documents() # Document search/pagination
async def count_documents() # Total count for pagination
async def get_opportunity() # Single opportunity details
```
---
## Databricks Apps Integration
### Configuration Files
**1. app.yaml** (Databricks Apps manifest)
```yaml
command:
- "uvicorn"
- "api.app:app"
- "--host"
- "0.0.0.0"
- "--port"
- "8000"
env:
- name: DATABRICKS_HOST
valueFrom:
databricksSecret:
key: host
scope: oral-health-app
- name: OPENAI_API_KEY
valueFrom:
databricksSecret:
key: openai_key
scope: oral-health-app
resources:
- name: policy-classifier-endpoint
modelServing:
endpoint: policy-classifier-prod
port: 8000
```
**2. Dockerfile.app** (Container image for Databricks Apps)
- Multi-stage build
- Node.js for frontend build
- Python 3.11 for backend
- Optimized for CPU-only deployment
### Deployment Scripts
**1. scripts/deploy-databricks-app.sh**
```bash
# Automated deployment script:
# 1. Build React frontend
# 2. Create Databricks secrets
# 3. Deploy to Databricks Apps
# 4. Provide access URL
```
**2. scripts/setup-local.sh**
```bash
# Local development setup:
# - Install Python deps
# - Install npm packages
# - Create .env file
```
**3. scripts/test-app.py**
```python
# Test production build locally
# Simulates Databricks Apps environment
```
---
## Project Structure
```
oral-health-policy-pulse/
βββ frontend/ # NEW: React application
β βββ src/
β β βββ components/
β β β βββ Layout.tsx # Main layout component
β β βββ pages/
β β β βββ Dashboard.tsx # Dashboard page
β β β βββ Heatmap.tsx # Interactive map
β β β βββ Documents.tsx # Document browser
β β β βββ Opportunities.tsx # Opportunity manager
β β β βββ Settings.tsx # Settings panel
β β βββ App.tsx # Root component
β β βββ main.tsx # Entry point
β β βββ index.css # Tailwind styles
β βββ package.json # npm dependencies
β βββ vite.config.ts # Vite configuration
β βββ tsconfig.json # TypeScript config
β βββ tailwind.config.js # Tailwind config
β βββ index.html # HTML template
β
βββ api/
β βββ app.py # NEW: Refactored FastAPI app
β βββ main.py # LEGACY: Original API
β βββ static/ # Built React files (generated)
β
βββ pipeline/
β βββ delta_lake.py # Original Delta Lake pipeline
β βββ delta_lake_queries.py # NEW: Query methods for web app
β
βββ scripts/ # NEW: Deployment scripts
β βββ deploy-databricks-app.sh # Deploy to Databricks
β βββ setup-local.sh # Local development setup
β βββ test-app.py # Test production build
β
βββ app.yaml # NEW: Databricks Apps config
βββ Dockerfile.app # NEW: Production Docker image
βββ DATABRICKS_APP_GUIDE.md # NEW: Deployment documentation
βββ README.md # UPDATED: Added React info
```
---
## Features by Page
### 1. Dashboard
**Statistics Cards:**
- Total documents analyzed
- Advocacy opportunities found
- States monitored
**Charts:**
- Topic distribution (bar chart)
- Topic distribution (pie chart)
**Recent Activity:**
- Latest opportunities table
- Sortable and filterable
### 2. Interactive Heatmap
**Map Features:**
- OpenStreetMap tiles
- Circle markers for opportunities
- Color-coded by urgency:
- π΄ Critical
- π High
- π‘ Medium
- π’ Low
**Interactivity:**
- Click markers for details
- Filter by state dropdown
- Filter by topic dropdown
- Real-time updates
### 3. Document Browser
**Features:**
- Full-text search across all documents
- Pagination (20 per page)
- Topic tags for each document
- Direct links to source
- Meeting date display
- State/municipality info
### 4. Opportunities Manager
**Display:**
- Card-based layout
- Urgency badge
- Key talking points
- Confidence score bar
**Actions:**
- Generate advocacy email
- Contact via email
- Add to calendar
- Copy talking points
**Filters:**
- Critical only
- High priority
- Medium priority
- Low priority
### 5. Settings Panel
**Configuration Options:**
- Target states (multi-select)
- Policy topics (checkboxes)
- Confidence threshold (slider)
- Email notifications (toggle)
**System Status:**
- Agent health indicators
- Uptime display
- Real-time status
---
## Development Workflow
### Local Development
**1. Backend (Hot Reload)**
```bash
source venv/bin/activate
uvicorn api.app:app --reload
# Runs on http://localhost:8000
```
**2. Frontend (Hot Reload)**
```bash
cd frontend
npm run dev
# Runs on http://localhost:3000
# Proxies API calls to :8000
```
### Production Build
**1. Build Frontend**
```bash
cd frontend
npm run build
# Outputs to api/static/
```
**2. Test Locally**
```bash
python scripts/test-app.py
# Serves at http://localhost:8000
```
**3. Deploy to Databricks**
```bash
./scripts/deploy-databricks-app.sh
# One-command deployment
```
---
## Benefits of Refactoring
### User Experience
| Before | After |
|--------|-------|
| Command-line only | Beautiful web interface |
| Manual file management | Automatic workflows |
| Static visualizations | Interactive maps & charts |
| No configuration UI | Full settings panel |
| Email via CLI | One-click generation |
### Developer Experience
| Before | After |
|--------|-------|
| Python-only | Full-stack (Python + TypeScript) |
| Local deployment | Cloud-native (Databricks Apps) |
| Manual setup | One-command deployment |
| Limited monitoring | Built-in observability |
| No UI testing | Component testing with Vitest |
### Operations
| Before | After |
|--------|-------|
| Single-user CLI | Multi-user web app |
| Local storage | Cloud Delta Lake |
| Manual scaling | Auto-scaling |
| No authentication | Databricks SSO |
| Basic logging | Enterprise monitoring |
---
## Technology Choices
### Why React?
- β
Industry-standard UI framework
- β
Rich ecosystem of libraries
- β
TypeScript support for type safety
- β
Excellent developer experience
- β
Easy to maintain and extend
### Why Vite?
- β
Lightning-fast dev server
- β
Instant hot module replacement
- β
Optimized production builds
- β
Native ES modules support
- β
Built-in TypeScript support
### Why Tailwind CSS?
- β
Utility-first approach
- β
Rapid prototyping
- β
Consistent design system
- β
Small production bundle
- β
Highly customizable
### Why Databricks Apps?
- β
Integrated with workspace
- β
Automatic authentication
- β
Unity Catalog integration
- β
Seamless data access
- β
Enterprise-ready
---
## Migration Path
### For Existing Users
**v1.0 (CLI) β v2.0 (Web App)**
1. **Keep using CLI** - Original functionality preserved in `api/main.py`
2. **Gradually adopt web UI** - Run both simultaneously
3. **Full migration** - Switch to web-only when ready
**Backward Compatibility:**
- All CLI commands still work
- Original API endpoints unchanged
- Can run standalone or web mode
### For New Users
**Start with Web UI:**
1. Deploy to Databricks Apps
2. Access via browser
3. No CLI needed!
---
## Performance Optimizations
### Frontend
- β
Code splitting with React lazy loading
- β
Query caching with TanStack Query
- β
Optimized bundle size (~300KB gzipped)
- β
Lazy-loaded charts and maps
- β
Debounced search inputs
### Backend
- β
Async endpoints with FastAPI
- β
Background task processing
- β
Delta Lake query optimization
- β
Static file caching
- β
CORS preflight caching
### Deployment
- β
Scale-to-zero when idle
- β
Auto-scaling under load
- β
CDN for static assets
- β
Connection pooling
- β
Gzip compression
---
## Next Steps
### Planned Features
**Phase 1: Enhanced Analytics**
- [ ] Historical trend charts
- [ ] Predictive analytics
- [ ] Custom report builder
**Phase 2: Collaboration**
- [ ] User comments/notes
- [ ] Shared dashboards
- [ ] Team workspaces
**Phase 3: Automation**
- [ ] Scheduled reports
- [ ] Email alerts
- [ ] Slack integration
**Phase 4: Advanced AI**
- [ ] Document Q&A chatbot
- [ ] Meeting video analysis
- [ ] Speech-to-text integration
---
## Deployment Examples
### Example 1: Local Testing
```bash
# Setup
./scripts/setup-local.sh
source venv/bin/activate
# Run backend
uvicorn api.app:app --reload &
# Run frontend
cd frontend && npm run dev
```
### Example 2: Production Deployment
```bash
# Configure
export DATABRICKS_HOST=https://your-workspace.cloud.databricks.com
export DATABRICKS_TOKEN=dapi...
export OPENAI_API_KEY=sk-...
# Deploy
./scripts/deploy-databricks-app.sh
# Monitor
databricks apps logs oral-health-policy-pulse --follow
```
### Example 3: Docker Deployment
```bash
# Build
docker build -f Dockerfile.app -t oral-health-app .
# Run
docker run -p 8000:8000 \
-e DATABRICKS_HOST=$DATABRICKS_HOST \
-e OPENAI_API_KEY=$OPENAI_API_KEY \
oral-health-app
```
---
## Conclusion
The **React + FastAPI refactoring** transforms Oral Health Policy Pulse from a developer-focused CLI tool into an **enterprise-ready web application** that can be:
β
**Deployed instantly** to Databricks Apps
β
**Used by non-technical users** via web browser
β
**Scaled automatically** for any load
β
**Monitored comprehensively** with built-in observability
β
**Secured enterprise-grade** with Databricks SSO
**The future of oral health advocacy is here! π¦·β¨**
|