Inayatgaming commited on
Commit
6b26953
ยท
verified ยท
1 Parent(s): 7fb48ee

Create README.md

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