The healthcare AI models marked (preview) in this article are currently in limited preview. These models are intended and provided as-is for research and model development exploration. The healthcare AI models are not designed or intended to be deployed in clinical settings as-is. They are not intended for use in the diagnosis or treatment of any health or medical condition, and the individual models’ performances for such purposes have not been established.You bear sole responsibility and liability for any use of the healthcare AI models, including verification of outputs and incorporation into any product or service intended for a medical purpose or to inform clinical decision-making, compliance with applicable healthcare laws and regulations, and obtaining any necessary clearances or approvals.
Registration is required to use CxrReportGen Premium. Access will be granted according to Microsoft’s eligibility criteria. To request access, submit this form.
Prerequisites
- An Azure subscription with access to Microsoft Foundry. If you don’t have one, create one for free.
- A Foundry project. If you don’t have one, create a project.
- Permission to view models and create or use deployments in your project.
- Access to deploy CxrReportGen Premium in the model catalog for your project. To request access, submit this form.
- Required role-based access control for model deployment and endpoint use. For details, see Role-based access control in Foundry portal.
- A test chest X-ray study and allowed metadata for evaluation.
- A client for test calls, such as REST tooling or an SDK-capable app environment.
Deploy CxrReportGen Premium in Foundry
Deploy the model from the Foundry model catalog so that you can invoke it from your application or test client.- Sign in to Microsoft Foundry. Make sure the New Foundry toggle is on. These steps refer to Foundry (new).

- Select your subscription and Foundry resource.
- Select Discover > Models.
- Search for CxrReportGen Premium and open the model card.
- Select Deploy.
- Review the available terms and deployment settings in your tenant.
- Enter a deployment name and create the deployment.
- Wait for deployment status to show Succeeded.
- Copy the endpoint URL, deployment identifier, and authentication settings.
If deployment fails, check Known issues in Microsoft Foundry for current limitations and workarounds. Common causes include missing role assignments, region mismatch, and offer access that isn’t enabled for your tenant.
Test the deployment
After deployment succeeds, you can validate the endpoint by sending a test request with a chest X-ray image to generate draft findings.Sample request payload
CXRReportGen Premium exposes aPOST /providers/microsoft/v1/inference endpoint that accepts a flat JSON body.
Reference for REST API
The following API reference shows the request payload, headers, response schema, and error codes for the CxrReportGen Premium inference endpoint. Use it to send authenticated requests, confirm your deployment is reachable, and as a reference to build applications using the API.Request headers
Authorization: Bearer <your-api-key>Content-Type: application/json
Request body
- Supported image formats: PNG and JPEG.
- Image preparation. If your source data is DICOM, convert each chest X-ray to a single PNG or JPEG and apply standard windowing before encoding. For reference DICOM-to-image conversion utilities, see the Healthcare AI Examples repository.
- Prior context is paired.
prior_imageandprior_reportmust both be present and non-empty. If only one is sent, both are ignored by the model. Send each image once; don’t duplicate. - Pass bare values for
indication,technique, andcomparison. Don’t include the field name in the value. For example, send"indication": "Cough", not"indication": "Indication: Cough". - Omit fields you don’t have. Send
nullor leave the key out. Don’t send an empty string (""), which adds a labeled-but-empty field to the prompt. - Text normalization scope.
currentcoversindication,technique,comparison;priorcoversprior_report;bothcovers all;nonedisables normalization.
Response body
Response codes
Learn more about the model
CxrReportGen Premium is an AI model checkpoint for building systems that draft structured radiology reports from chest X-ray inputs. It integrates clinical context such as indication, technique, comparison study, and prior reports. It is purpose-built to slot into existing radiology workflows as a first-pass draft that a qualified clinician then reviews, corrects, and finalizes. The model is not a medical device and is not intended to deliver autonomous reports or to inform clinical decision-making on its own. The Premium model is a closed-weight, serverless offering with improved draft quality and expanded capabilities. For more information about differences between legacy and Premium models, see Legacy and Premium healthcare models. For license, transparency, and intended-use details, see the CxrReportGen Premium model card.Common use cases
Each of the following use cases assumes qualified human review as part of the workflow before any approval or action occurs.- First-pass chest X-ray draft reports for a radiologist to edit and approve
- Structured findings extraction for downstream coding and reimbursement
- Triage and prioritization signals in high-volume reading rooms
- Resident and trainee feedback and quality review under attending supervision
- Embedding inside ISV radiology products that surface CxrReportGen drafts

Review safety requirements
The model output is generated text findings, which can contain errors or omissions. CxrReportGen Premium is a model service, not a standalone clinical application. It’s intended for organizations and developers building healthcare imaging solutions, including healthcare providers, independent software vendors, systems integrators, partners, and enterprise AI teams. The service is hosted and accessed by authenticated endpoints; customers don’t receive raw model weights. Before implementation, define your workflow controls:- Out-of-the-box clinical use
- Keep qualified professionals in the loop for review and sign-off.
- Validate model and end-to-end workflow performance on representative data.
- Require source-image review for clinically relevant decisions.
- Maintain feedback and incident response paths for unexpected outputs.
- Confirm privacy, security, retention, logging, and access controls for sensitive healthcare data.
- Autonomous clinical decision-making.
- Producing final radiology reports without professional validation and sign-off.
- Use cases that require guarantees of perfect accuracy, completeness, or fairness.
- Emergency, triage, or time-critical workflows unless your organization has independently validated the complete workflow and implemented appropriate controls.
- Any workflow where errors or omissions in generated text could be acted on without mitigation.
Data, privacy, and security considerations
CxrReportGen Premium might be used in workflows that involve sensitive healthcare data, including medical images and associated text. You are responsible for configuring and operating your applications to meet privacy, security, compliance, and data governance obligations. Use of CxrReportGen Premium is subject to the preview license and might also be subject to other terms and conditions. For licensing information, see the CxrReportGen Premium model card.Related content
- Healthcare AI examples (GitHub)
- How to use CxrReportGen healthcare AI model to generate grounded findings (classic)
- Customize a premium healthcare AI model with fine-tuning
- Model catalog and collections in Foundry portal
- Authentication and authorization options in Foundry
- Integrate Microsoft Foundry with your applications