Spaces:
Sleeping
Sleeping
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" | |
} | |