-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathhub.json
More file actions
43 lines (43 loc) · 1.04 KB
/
hub.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"title": "WhisperX Worker",
"description": "Speech transcription with word-level timestamps and speaker diarization using WhisperX",
"type": "serverless",
"category": "audio",
"iconUrl": "https://avatars.githubusercontent.com/u/236864052?v=4",
"config": {
"runsOn": "GPU",
"containerDiskInGb": 30,
"gpuCount": 1,
"gpuIds": "AMPERE_16,AMPERE_24,ADA_24",
"allowedCudaVersions": ["12.8"],
"env": [
{
"key": "HF_TOKEN",
"input": {
"name": "Hugging Face Token",
"type": "string",
"description": "Hugging Face access token, required for speaker diarization models",
"default": ""
}
}
],
"presets": [
{
"name": "Basic Transcription",
"defaults": {}
},
{
"name": "Transcription with Alignment",
"defaults": {}
},
{
"name": "Transcription with Diarization",
"defaults": {}
},
{
"name": "Speaker Identification",
"defaults": {}
}
]
}
}