Spaces:
Sleeping
Sleeping
| 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" | |
| } | |
| ``` |