Update config.json with device support

#3
Files changed (1) hide show
  1. config.json +114 -2
config.json CHANGED
@@ -1,4 +1,116 @@
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
+ "openai_whisper-large-v3-v20240930_626MB",
49
+ "openai_whisper-large-v3-v20240930_turbo_632MB",
50
+ ]
51
+ }
52
+ },
53
+ {
54
+ "identifiers": [
55
+ "Mac13",
56
+ "iMac21",
57
+ "MacBookAir10,1",
58
+ "MacBookPro17",
59
+ "MacBookPro18",
60
+ "Macmini9",
61
+ "iPad13,16",
62
+ "iPad13,4",
63
+ "iPad13,8"
64
+ ],
65
+ "models": {
66
+ "default": "openai_whisper-large-v3-v20240930",
67
+ "supported": [
68
+ "openai_whisper-tiny",
69
+ "openai_whisper-tiny.en",
70
+ "openai_whisper-base",
71
+ "openai_whisper-base.en",
72
+ "openai_whisper-small",
73
+ "openai_whisper-small.en",
74
+ "openai_whisper-large-v2",
75
+ "openai_whisper-large-v2_949MB",
76
+ "openai_whisper-large-v3",
77
+ "openai_whisper-large-v3_947MB",
78
+ "distil-whisper_distil-large-v3",
79
+ "distil-whisper_distil-large-v3_594MB",
80
+ "openai_whisper-large-v3-v20240930",
81
+ "openai_whisper-large-v3-v20240930_626MB",
82
+ ]
83
+ }
84
+ },
85
+ {
86
+ "identifiers": ["Mac14", "Mac15", "Mac16"],
87
+ "models": {
88
+ "default": "openai_whisper-large-v3-v20240930",
89
+ "supported": [
90
+ "openai_whisper-tiny",
91
+ "openai_whisper-tiny.en",
92
+ "openai_whisper-base",
93
+ "openai_whisper-base.en",
94
+ "openai_whisper-small",
95
+ "openai_whisper-small.en",
96
+ "openai_whisper-large-v2",
97
+ "openai_whisper-large-v2_949MB",
98
+ "openai_whisper-large-v2_turbo",
99
+ "openai_whisper-large-v2_turbo_955MB",
100
+ "openai_whisper-large-v3",
101
+ "openai_whisper-large-v3_947MB",
102
+ "openai_whisper-large-v3_turbo",
103
+ "openai_whisper-large-v3_turbo_954MB",
104
+ "distil-whisper_distil-large-v3",
105
+ "distil-whisper_distil-large-v3_594MB",
106
+ "distil-whisper_distil-large-v3_turbo",
107
+ "distil-whisper_distil-large-v3_turbo_600MB",
108
+ "openai_whisper-large-v3-v20240930",
109
+ "openai_whisper-large-v3-v20240930_turbo",
110
+ "openai_whisper-large-v3-v20240930_626MB",
111
+ "openai_whisper-large-v3-v20240930_turbo_632MB",
112
+ ]
113
+ }
114
+ }
115
+ ]
116
+ }