OLLAMA / README.md
Inayatgaming's picture
Create README.md
6b26953 verified
|
Raw
History Blame Contribute Delete
643 Bytes
---
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"
}
```