iplc-t5-clinical / README.md
pdarleyjr's picture
Add FastAPI T5 clinical report generator
dd544b6
|
raw
history blame
580 Bytes
---
title: IPLC T5 Clinical Report Generator
emoji: 🏥
colorFrom: blue
colorTo: indigo
sdk: docker
app_port: 7860
pinned: false
---
# IPLC T5 Clinical Report Generator API
FastAPI-based API for generating clinical report summaries using a fine-tuned T5 model.
## API Endpoints
### POST /predict
Generate a clinical report summary from input text.
Request body:
```json
{
"text": "string"
}
```
Response:
```json
{
"success": true,
"data": "string",
"error": null
}
```
### GET /health
Health check endpoint.
Response:
```json
{
"status": "healthy"
}