prabodbc commited on
Commit
3782b5b
·
verified ·
1 Parent(s): b5885f9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -38,13 +38,17 @@ basert serve --model whisper-medium.en-F16.base
38
  ```
39
 
40
  `POST /v1/audio/transcriptions` (multipart or JSON) returns `json`, `text`,
41
- `srt`, `vtt`, or `verbose_json`, with optional SSE streaming. Or transcribe
42
- directly from the CLI:
 
 
 
 
43
 
44
  ```bash
45
  basert-transcribe whisper-medium.en-F16.base audio.wav
46
  ```
47
 
48
- This is the English-only variant; `language` is fixed to `en`.
49
 
50
  Released under the apache-2.0 license, inherited from the base model.
 
38
  ```
39
 
40
  `POST /v1/audio/transcriptions` (multipart or JSON) returns `json`, `text`,
41
+ `srt`, `vtt`, or `verbose_json` (with per-segment `avg_logprob` /
42
+ `no_speech_prob` / `compression_ratio` / `temperature` and the detected
43
+ `language`), with optional SSE streaming. Supported
44
+ request fields: `language` (or `"auto"` to detect), `prompt`
45
+ (initial prompt / vocabulary bias). Or transcribe directly
46
+ from the CLI:
47
 
48
  ```bash
49
  basert-transcribe whisper-medium.en-F16.base audio.wav
50
  ```
51
 
52
+ This is the English-only variant; `language` is fixed to `en` and `task=translate` is rejected.
53
 
54
  Released under the apache-2.0 license, inherited from the base model.