```json
{
  "entry_points": [
    "app/main.py (FastAPI route registration)",
    "app/proxy.py (/v1/chat/completions endpoint)"
  ],
  "data_flow": [
    "User Request -> app/main.py -> app/proxy.py",
    "app/proxy.py -> app/store.py (Log metadata/requests to SQLite)",
    "app/proxy.py -> llama.cpp (Upstream inference)",
    "app/store.py -> app/reports.py (Querying stats)",
    "app/reports.py -> app/redaction.py (Sanitizing data)",
    "app/redaction.py -> app/main.py (Dashboard display)"
  ],
  "risks": [
    "SQL Injection: Potential risk in app/store.py if queries are not parameterized.",
    "Data Leakage: Failure in app/redaction.py could expose PII or secrets on the dashboard.",
    "Upstream Manipulation: app/proxy.py could be vulnerable to request smuggling or injection toward llama.cpp.",
    "Unauthorized Access: app/main.py must ensure the dashboard routes are protected by authentication."
  ]
}
```