Spaces:
Sleeping
Sleeping
metadata
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:
{
"text": "string"
}
Response:
{
"success": true,
"data": "string",
"error": null
}
GET /health
Health check endpoint.
Response:
{
"status": "healthy"
}