| 499 | |
| 500 | |
| 501 | class SynthesisBundle(TypedDict, total=False): |
| 502 | paper_id: str |
| 503 | title: str |
| 504 | metadata: dict[str, Any] |
| 505 | evidence_quality: str |
| 506 | coverage: dict[str, Any] |
| 507 | source_manifest: dict[str, Any] |
| 508 | source_index: dict[str, Any] |
| 509 | references: dict[str, Any] |
| 510 | figure_plan: dict[str, Any] |
| 511 | figure_table_manifest: dict[str, Any] |
| 512 | pdf_assets: dict[str, Any] |
| 513 | writing_contract: dict[str, Any] |
| 514 | |
| 515 | |
| 516 | def empty_metadata() -> MetadataRecord: |
no outgoing calls
no test coverage detected