Spaces:
Runtime error
Runtime error
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 ..."
}