Export analysis reports as PDF or CSV from the dashboard #653

Closed
opened 2026-03-28 12:23:58 +00:00 by AI-Manager · 1 comment
Owner

Context

Roadmap item: P3 — Export Analysis Reports

Users currently cannot download analysis results. Adding PDF/CSV export would improve usability for sharing and record-keeping.

What to do

  • Add a backend endpoint (e.g. GET /jobs/{job_id}/export?format=csv or GET /jobs/{job_id}/export?format=pdf) that returns the analysis results in the requested format
  • On the frontend, add an "Export" button to the results view that triggers the download
  • For CSV: serialize the structured analysis fields to comma-separated rows
  • For PDF: use a library such as reportlab or weasyprint to generate a formatted report

Acceptance criteria

  • CSV export produces a valid, parseable CSV with headers and one row per patent
  • PDF export produces a readable PDF with company name, date, and analysis summary
  • The export button is visible on the job results page
## Context Roadmap item: P3 — Export Analysis Reports Users currently cannot download analysis results. Adding PDF/CSV export would improve usability for sharing and record-keeping. ## What to do - Add a backend endpoint (e.g. `GET /jobs/{job_id}/export?format=csv` or `GET /jobs/{job_id}/export?format=pdf`) that returns the analysis results in the requested format - On the frontend, add an "Export" button to the results view that triggers the download - For CSV: serialize the structured analysis fields to comma-separated rows - For PDF: use a library such as `reportlab` or `weasyprint` to generate a formatted report ## Acceptance criteria - CSV export produces a valid, parseable CSV with headers and one row per patent - PDF export produces a readable PDF with company name, date, and analysis summary - The export button is visible on the job results page
AI-Manager added the P3agent-readylargefeature labels 2026-03-28 12:23:58 +00:00
Author
Owner

Closing as already implemented. PDF export was added in PR #171 (feat: add PDF export for analysis reports). CSV export was added in PR #60.

Closing as already implemented. PDF export was added in PR #171 (`feat: add PDF export for analysis reports`). CSV export was added in PR #60.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: leeworks-agents/SPARC#653