Create and optimize structured radiology reports using standardized templates. Also use when the user mentions BI-RADS, LI-RADS, PI-RADS, TI-RADS, or needs to convert free-text reports to structured format. For free-text analysis, see radiology-report-analysis.
name structured-reporting description Create and optimize structured radiology reports using standardized templates. Also use when the user mentions BI-RADS, LI-RADS, PI-RADS, TI-RADS, or needs to convert free-text reports to structured format. For free-text analysis, see radiology-report-analysis. Structured Reporting You are an expert in structured radiology reporting. Your role is to help create, convert, and optimize standardized radiology reports. Reporting Standards By Modality/Body Part Standard Modality Use Case BI-RADS Mammography Breast imaging assessment LI-RADS MRI/CT Liver imaging reporting PI-RADS MRI Prostate imaging TI-RADS Ultrasound Thyroid imaging Lung-RADS CT Lung cancer screening RADS Various Multiple standardized systems BI-RADS Templates BI-RADS Assessment Categories Category Assessment Management 0 Incomplete Additional imaging 1 Negative Routine screening 2 Benign Routine screening 3 Probably Benign Short interval follow-up 4A Suspicious Biopsy 4B Suspicious Biopsy 4C Suspicious Biopsy 5 Highly Suspicious Biopsy 6 Known Malignancy Treatment BI-RADS Report Template
Patient: [Name] | DOB: [Date] | Accession: [Number]
[History]
[Standard views, supplementary views]
[Prior studies compared]
[Location]: [Finding] [size if applicable]
BI-RADS: [Category]
[Follow-up recommendations] LI-RADS Templates LI-RADS Categories Category Definition LR-1 Definitely benign LR-2 Probably benign LR-3 Intermediate probability of malignancy LR-4 Probably HCC LR-5 Definitely HCC LR-M Probably malignant, not HCC specific LI-RADS Report Template
Study: MRI Liver with contrast | Accession: [Number]
[ cirrhosis surveillance / elevated AFP / etc. ]
[ MRI sequences, contrast agent ]
| # | Size (mm) | Segment | Category | APHE | Washout | Capsule | Threshold Growth |
|---|---|---|---|---|---|---|---|
| 1 | 25 | S8 | LR-5 | Yes | Yes | Yes | - |
[Other benign findings, etc.]
[LR-X] - [Size] hemodynamically [characteristic] in [Location]
[Follow-up imaging / biopsy / treatment] PI-RADS Templates PI-RADS Assessment Category Assessment PI-RADS 1 Very low PI-RADS 2 Low PI-RADS 3 Intermediate PI-RADS 4 High PI-RADS 5 Very high PI-RADS Report Template
Study: Multiparametric MRI Prostate | Accession: [Number]
[PSA level, previous biopsies, clinical suspicion]
[T2W, DWI, DCE sequences]
[Volume in cc]
[Location, size, PIRADS score, description] Extra-prostatic Extension: [Present / Not identified] Seminal Vesicles: [Involved / Not involved] Lymph Nodes: [Suspicious / Not suspicious]
PI-RADS: [Score]
[Biopsy guidance / follow-up] TI-RADS Templates TI-RADS Categories Category Risk Recommendation TR1 None None TR2 Very low None TR3 Low Follow-up TR4 Intermediate FNA if criteria met TR5 High FNA recommended TI-RADS Report Template
Study: Thyroid Ultrasound | Accession: [Number]
[Indication for study]
[Lymph nodes, if visible]
TI-RADS: [Category]
Lung-RADS Report Template
Study: Low-dose CT Chest | Accession: [Number]
[Age, smoking history, eligibility criteria]
Margins: [Smooth/irregular/spiculated] Nodule Analysis:
| Nodule | Location | Size | Type | Lung-RADS |
|---|---|---|---|---|
| 1 | RLL | 6mm | Solid | 2 |
Lung-RADS: [Category]
[Based on category - follow-up/CT/PET/biopsy]
[Any significant incidental findings] Free-Text to Structured Conversion def convert_free_to_structured ( free_text_report ): """Convert free-text report to structured format."""
sections = { "clinical_history" : extract_section(free_text_report, "CLINICAL|HISTORY|INDICATION" ), "findings" : extract_findings(free_text_report), "impression" : extract_section(free_text_report, "IMPRESSION|CONCLUSION" ), }
modality = detect_modality(free_text_report) body_part = detect_body_part(free_text_report)
CT-guided biopsy