Update config.json with device support (#3)
Browse files- Update config.json with device support (b261a9aa11ef219c826fd9f70246b2be7988afbf)
- Update config.json with openai_whisper-large-v3-v20240930 support (0e905b21bcb790fb3780cd0cdcaab870cbcb04cc)
Co-authored-by: Atila <[email protected]>
- config.json +114 -2
config.json
CHANGED
|
@@ -1,4 +1,116 @@
|
|
| 1 |
{
|
| 2 |
"name": "whisperkit-coreml",
|
| 3 |
-
"
|
| 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 |
+
"openai_whisper-large-v3-v20240930",
|
| 79 |
+
"distil-whisper_distil-large-v3",
|
| 80 |
+
"distil-whisper_distil-large-v3_594MB"
|
| 81 |
+
]
|
| 82 |
+
}
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"identifiers": ["Mac14", "Mac15", "Mac16"],
|
| 86 |
+
"models": {
|
| 87 |
+
"default": "openai_whisper-large-v3-v20240930",
|
| 88 |
+
"supported": [
|
| 89 |
+
"openai_whisper-tiny",
|
| 90 |
+
"openai_whisper-tiny.en",
|
| 91 |
+
"openai_whisper-base",
|
| 92 |
+
"openai_whisper-base.en",
|
| 93 |
+
"openai_whisper-small",
|
| 94 |
+
"openai_whisper-small.en",
|
| 95 |
+
"openai_whisper-large-v2",
|
| 96 |
+
"openai_whisper-large-v2_949MB",
|
| 97 |
+
"openai_whisper-large-v2_turbo",
|
| 98 |
+
"openai_whisper-large-v2_turbo_955MB",
|
| 99 |
+
"openai_whisper-large-v3",
|
| 100 |
+
"openai_whisper-large-v3_947MB",
|
| 101 |
+
"openai_whisper-large-v3_turbo",
|
| 102 |
+
"openai_whisper-large-v3_turbo_954MB",
|
| 103 |
+
"openai_whisper-large-v3-v20240930",
|
| 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 |
+
}
|