You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`audio_url`|`string`| URL to a Pre-Authenticated Request (PAR) of the audio file stored in OCI Object Storage. |
144
+
|`model`|`string`| Whisper model name to use (`base`, `medium`, `turbo`, etc.). |
145
+
|`summary`|`bool`| Whether to generate a summary at the end. If `true` and no custom model path is provided, `mistralai/Mistral-7B-Instruct-v0.1` will be loaded from Hugging Face. Requires `hf_token`. |
146
+
|`speaker`|`bool`| Whether to enable speaker diarization. Requires `hf_token`. If `false`, all segments will be labeled as "Speaker 1". |
147
+
|`max_speakers`|`int`| (Optional) Helps improve diarization accuracy by specifying the expected number of speakers. |
148
+
|`denoise`|`bool`| (Optional) Apply basic denoising to improve quality in noisy recordings. |
149
+
|`streaming`|`bool`| (Optional) Enable real-time log streaming for transcription chunks and progress updates. |
150
+
|`hf_token`|`string`| Hugging Face token, required for loading models like Mistral or enabling speaker diarization. |
145
151
146
-
### Example Blueprint
152
+
---
153
+
154
+
#### Example `curl` Command
147
155
148
156
```bash
149
-
curl -L -X POST http://<YOUR_IP>:8000/transcribe \
0 commit comments