ZachNagengast commited on
Commit
b261a9a
1 Parent(s): 736778e

Update config.json with device support

Browse files
Files changed (1) hide show
  1. config.json +108 -2
config.json CHANGED
@@ -1,4 +1,110 @@
1
  {
2
  "name": "whisperkit-coreml",
3
- "whisperkit_version": "0.1"
4
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
  "name": "whisperkit-coreml",
3
+ "version": "0.2",
4
+ "device_support": [
5
+ {
6
+ "identifiers": ["iPhone11", "iPhone12", "Watch7", "Watch8"],
7
+ "models": {
8
+ "default": "openai_whisper-tiny",
9
+ "supported": [
10
+ "openai_whisper-tiny",
11
+ "openai_whisper-tiny.en",
12
+ "openai_whisper-base",
13
+ "openai_whisper-base.en"
14
+ ]
15
+ }
16
+ },
17
+ {
18
+ "identifiers": ["iPhone13", "iPad13,18", "iPad13,1"],
19
+ "models": {
20
+ "default": "openai_whisper-base",
21
+ "supported": [
22
+ "openai_whisper-tiny",
23
+ "openai_whisper-tiny.en",
24
+ "openai_whisper-base",
25
+ "openai_whisper-base.en",
26
+ "openai_whisper-small",
27
+ "openai_whisper-small.en"
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "identifiers": ["iPhone14", "iPhone15", "iPhone16", "iPhone17"],
33
+ "models": {
34
+ "default": "openai_whisper-base",
35
+ "supported": [
36
+ "openai_whisper-tiny",
37
+ "openai_whisper-tiny.en",
38
+ "openai_whisper-base",
39
+ "openai_whisper-base.en",
40
+ "openai_whisper-small",
41
+ "openai_whisper-small.en",
42
+ "openai_whisper-large-v2_949MB",
43
+ "openai_whisper-large-v2_turbo_955MB",
44
+ "openai_whisper-large-v3_947MB",
45
+ "openai_whisper-large-v3_turbo_954MB",
46
+ "distil-whisper_distil-large-v3_594MB",
47
+ "distil-whisper_distil-large-v3_turbo_600MB"
48
+ ]
49
+ }
50
+ },
51
+ {
52
+ "identifiers": [
53
+ "Mac13",
54
+ "iMac21",
55
+ "MacBookAir10,1",
56
+ "MacBookPro17",
57
+ "MacBookPro18",
58
+ "Macmini9",
59
+ "iPad13,16",
60
+ "iPad13,4",
61
+ "iPad13,8"
62
+ ],
63
+ "models": {
64
+ "default": "openai_whisper-large-v3-v20240930",
65
+ "supported": [
66
+ "openai_whisper-tiny",
67
+ "openai_whisper-tiny.en",
68
+ "openai_whisper-base",
69
+ "openai_whisper-base.en",
70
+ "openai_whisper-small",
71
+ "openai_whisper-small.en",
72
+ "openai_whisper-large-v2",
73
+ "openai_whisper-large-v2_949MB",
74
+ "openai_whisper-large-v3",
75
+ "openai_whisper-large-v3_947MB",
76
+ "openai_whisper-large-v3-v20240930",
77
+ "distil-whisper_distil-large-v3",
78
+ "distil-whisper_distil-large-v3_594MB"
79
+ ]
80
+ }
81
+ },
82
+ {
83
+ "identifiers": ["Mac14", "Mac15", "Mac16"],
84
+ "models": {
85
+ "default": "openai_whisper-large-v3-v20240930",
86
+ "supported": [
87
+ "openai_whisper-tiny",
88
+ "openai_whisper-tiny.en",
89
+ "openai_whisper-base",
90
+ "openai_whisper-base.en",
91
+ "openai_whisper-small",
92
+ "openai_whisper-small.en",
93
+ "openai_whisper-large-v2",
94
+ "openai_whisper-large-v2_949MB",
95
+ "openai_whisper-large-v2_turbo",
96
+ "openai_whisper-large-v2_turbo_955MB",
97
+ "openai_whisper-large-v3",
98
+ "openai_whisper-large-v3_947MB",
99
+ "openai_whisper-large-v3_turbo",
100
+ "openai_whisper-large-v3_turbo_954MB",
101
+ "openai_whisper-large-v3-v20240930",
102
+ "distil-whisper_distil-large-v3",
103
+ "distil-whisper_distil-large-v3_594MB",
104
+ "distil-whisper_distil-large-v3_turbo",
105
+ "distil-whisper_distil-large-v3_turbo_600MB"
106
+ ]
107
+ }
108
+ }
109
+ ]
110
+ }