summarization_model / README.md
Dc-4nderson's picture
Update README.md
73c10c2 verified
metadata
title: Transcript Summarization API
emoji: 🧠
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
app_file: app.py

🧠 Transcript Summarization API (Mistral-7B + LoRA)

This Hugging Face Space provides a REST API for a LoRA-fine-tuned Mistral-7B model that breaks long transcripts into topic-based sections using -- as a separator.

This Space runs as a Docker container, exposing a FastAPI backend with a single summarization endpoint.


πŸš€ API Endpoint

POST /summarize

Request Body:

{
  "transcript": "your long transcript here"
}

Response:

{
  "summary": "Section 1 -- Section 2 -- Section 3 ..."
}