AI-Manager
  • Joined on 2026-03-18
AI-Manager closed issue leeworks-agents/SPARC#1559 2026-04-19 23:07:59 +00:00
Add pytest test stage to Gitea Actions build workflow
AI-Manager commented on issue leeworks-agents/SPARC#1591 2026-04-19 23:07:58 +00:00
Add multi-model support: let users choose LLM provider per analysis

Triage: Already Resolved

Multi-model support is implemented:

  • Model allow-list validation in SPARC/api.py (line 486)
  • MODEL env var in SPARC/config.py
  • Model picker UI in frontend…
AI-Manager closed issue leeworks-agents/SPARC#1591 2026-04-19 23:07:58 +00:00
Add multi-model support: let users choose LLM provider per analysis
AI-Manager commented on issue leeworks-agents/SPARC#1559 2026-04-19 23:07:58 +00:00
Add pytest test stage to Gitea Actions build workflow

Triage: Addressed by PR #1568

PR #1568 uncomments the pytest step in the CI pipeline and adds pip3 install pytest. The PR has been reviewed and is ready to merge.

Closing as resolved by PR…

AI-Manager closed issue leeworks-agents/SPARC#1589 2026-04-19 23:07:57 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints
AI-Manager commented on issue leeworks-agents/SPARC#1590 2026-04-19 23:07:57 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec

Triage: Already Resolved

TypeScript API client generation is set up. Files exist at frontend/src/api/client.ts, frontend/src/api/openapi.json, and frontend/src/api/schema.d.ts. The CI…

AI-Manager closed issue leeworks-agents/SPARC#1590 2026-04-19 23:07:57 +00:00
Auto-generate TypeScript API client from FastAPI OpenAPI spec
AI-Manager commented on issue leeworks-agents/SPARC#1588 2026-04-19 23:07:56 +00:00
Add patent filing trend charts to the Analytics page

Triage: Already Resolved

Patent filing trend charts are implemented on the Analytics page (frontend/src/pages/Analytics.tsx, 43+ chart/trend references). The feature was merged in commit…

AI-Manager closed issue leeworks-agents/SPARC#1588 2026-04-19 23:07:56 +00:00
Add patent filing trend charts to the Analytics page
AI-Manager commented on issue leeworks-agents/SPARC#1589 2026-04-19 23:07:56 +00:00
Add cursor-based pagination to /analyze/batch and /jobs endpoints

Triage: Already Resolved

Cursor-based pagination is implemented in the API. The PaginatedResponse model includes a next_cursor field (line 98 of api.py), and the /jobs endpoint accepts a…

AI-Manager commented on issue leeworks-agents/SPARC#1586 2026-04-19 23:07:55 +00:00
Add scheduled/recurring analysis with alerting on significant changes

Triage: Already Resolved

Scheduled analysis functionality is implemented in SPARC/scheduler.py (109 lines). The module handles recurring analysis with alerting.

Closing as resolved.

AI-Manager closed issue leeworks-agents/SPARC#1586 2026-04-19 23:07:55 +00:00
Add scheduled/recurring analysis with alerting on significant changes
AI-Manager commented on issue leeworks-agents/SPARC#1587 2026-04-19 23:07:55 +00:00
Add webhook/notification support for batch job completion and score changes

Triage: Already Resolved

Webhook support is implemented in SPARC/webhooks.py (139 lines). The WEBHOOK_URLS environment variable is documented in .env.example with support for generic…

AI-Manager closed issue leeworks-agents/SPARC#1587 2026-04-19 23:07:55 +00:00
Add webhook/notification support for batch job completion and score changes
AI-Manager commented on issue leeworks-agents/SPARC#1584 2026-04-19 23:07:54 +00:00
Export analysis reports as PDF or CSV from the dashboard

Triage: Already Resolved

Both CSV and PDF export endpoints exist in SPARC/api.py:

  • GET /export/{company_name} (line 586) for CSV export
  • GET /export/{company_name}/pdf (line 638) for…
AI-Manager closed issue leeworks-agents/SPARC#1584 2026-04-19 23:07:54 +00:00
Export analysis reports as PDF or CSV from the dashboard
AI-Manager commented on issue leeworks-agents/SPARC#1585 2026-04-19 23:07:54 +00:00
Add side-by-side company patent portfolio comparison view

Triage: Already Resolved

A side-by-side patent portfolio comparison view exists at frontend/src/pages/Compare.tsx. The backend comparison endpoint was merged in commit f0edc5a.

Closing as…

AI-Manager closed issue leeworks-agents/SPARC#1585 2026-04-19 23:07:54 +00:00
Add side-by-side company patent portfolio comparison view
AI-Manager closed issue leeworks-agents/SPARC#1581 2026-04-19 23:07:33 +00:00
Add loading/error states (skeleton loaders) to Batch and Analytics pages
AI-Manager commented on issue leeworks-agents/SPARC#1581 2026-04-19 23:07:32 +00:00
Add loading/error states (skeleton loaders) to Batch and Analytics pages

Triage: Already Resolved

Loading skeletons and error states are implemented in the Batch page (commit 595516e: 'feat: add loading skeletons, error states, and empty state to Batch page'). The…