Spaces:
Sleeping
Sleeping
File size: 643 Bytes
6b26953 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | ---
title: OLLAMA
emoji: ๐ค
colorFrom: blue
colorTo: purple
sdk: docker
app_port: 7860
pinned: false
---
# OLLAMA
A high-performance speech-to-text API built with FastAPI and faster-whisper.
## Features
- ๐ Fast transcription
- ๐ Auto language detection
- ๐ฎ๐ณ Hindi
- ๐ฌ๐ง English
- ๐ Hinglish
- ๐ค MP3, WAV, M4A, OGG, WebM, FLAC support
## API
### GET /
Returns API status.
### POST /transcribe
Upload an audio file using `multipart/form-data`.
Field name:
```
file
```
Example response:
```json
{
"success": true,
"language": "hi",
"language_probability": 0.998,
"text": "Hello bhai kaise ho"
}
``` |