├── .github └── workflows │ ├── development-tests.yml │ ├── expo-update.yml │ ├── homebrew-update.yml │ ├── release-tests.yml │ └── unit-tests.yml ├── .gitignore ├── .spi.yml ├── .swiftpm ├── configuration │ └── Package.resolved └── xcode │ └── xcshareddata │ └── xcschemes │ └── whisperkit-Package.xcscheme ├── BENCHMARKS.md ├── CONTRIBUTING.md ├── Examples ├── ServeCLIClient │ ├── Curl │ │ ├── README.md │ │ ├── test.sh │ │ ├── transcribe.sh │ │ └── translate.sh │ ├── Python │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── test_transcribe.py │ │ ├── test_translate.py │ │ ├── uv.lock │ │ └── whisperkit_client.py │ └── Swift │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── WhisperKitSwiftClient │ │ │ ├── CLI.swift │ │ │ └── Generated │ │ │ │ ├── Client.swift │ │ │ │ └── Types.swift │ │ └── main.swift │ │ └── updateClient.sh └── WhisperAX │ ├── Debug.xcconfig │ ├── WhisperAX.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── WhisperAX.xcscheme │ ├── WhisperAX │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 102.png │ │ │ │ ├── 1024 1.png │ │ │ │ ├── 1024 2.png │ │ │ │ ├── 1024.png │ │ │ │ ├── 108.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120 1.png │ │ │ │ ├── 120.png │ │ │ │ ├── 128 1.png │ │ │ │ ├── 128.png │ │ │ │ ├── 136.png │ │ │ │ ├── 152.png │ │ │ │ ├── 16.png │ │ │ │ ├── 167.png │ │ │ │ ├── 172.png │ │ │ │ ├── 180.png │ │ │ │ ├── 192.png │ │ │ │ ├── 196.png │ │ │ │ ├── 216.png │ │ │ │ ├── 234.png │ │ │ │ ├── 256.png │ │ │ │ ├── 258.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 44.png │ │ │ │ ├── 48.png │ │ │ │ ├── 512.png │ │ │ │ ├── 55.png │ │ │ │ ├── 58 1.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60 1.png │ │ │ │ ├── 60.png │ │ │ │ ├── 64 1.png │ │ │ │ ├── 64.png │ │ │ │ ├── 66.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80 1.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87 1.png │ │ │ │ ├── 87.png │ │ │ │ ├── 88.png │ │ │ │ ├── 92.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── WhisperAX.entitlements │ ├── Views │ │ └── ContentView.swift │ └── WhisperAXApp.swift │ ├── WhisperAXTests │ ├── WhisperAXTests.swift │ └── WhisperKitTests │ ├── WhisperAXUITests │ ├── WhisperAXUITests.swift │ └── WhisperAXUITestsLaunchTests.swift │ ├── WhisperAXWatchApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── appstore.png │ │ └── Contents.json │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── WhisperAXExampleView.swift │ └── WhisperAXWatchApp.swift │ ├── WhisperAXWatchAppTests │ └── WhisperAX_Watch_AppTests.swift │ └── WhisperAXWatchAppUITests │ ├── WhisperAX_Watch_AppUITests.swift │ └── WhisperAX_Watch_AppUITestsLaunchTests.swift ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── WhisperKit │ ├── Core │ │ ├── Audio │ │ │ ├── AudioChunker.swift │ │ │ ├── AudioProcessor.swift │ │ │ ├── AudioStreamTranscriber.swift │ │ │ ├── EnergyVAD.swift │ │ │ └── VoiceActivityDetector.swift │ │ ├── AudioEncoder.swift │ │ ├── Configurations.swift │ │ ├── FeatureExtractor.swift │ │ ├── Models.swift │ │ ├── Text │ │ │ ├── LogitsFilter.swift │ │ │ ├── SegmentSeeker.swift │ │ │ └── TokenSampler.swift │ │ ├── TextDecoder.swift │ │ ├── TranscribeTask.swift │ │ └── WhisperKit.swift │ └── Utilities │ │ ├── Concurrency.swift │ │ ├── Extensions+Internal.swift │ │ ├── Extensions+Public.swift │ │ ├── Logging.swift │ │ ├── ModelUtilities.swift │ │ ├── ResultWriter.swift │ │ ├── TextUtilities.swift │ │ ├── TranscriptionUtilities.swift │ │ └── WhisperError.swift └── WhisperKitCLI │ ├── CLIUtils.swift │ ├── Server │ ├── GeneratedSources │ │ ├── Server.swift │ │ └── Types.swift │ ├── OpenAIHandler.swift │ ├── ServeCLI.swift │ └── ServeCLIArguments.swift │ ├── TranscribeCLI.swift │ ├── TranscribeCLIArguments.swift │ ├── TranscribeCLIUtils.swift │ └── WhisperKitCLI.swift ├── Tests └── WhisperKitTests │ ├── Evaluate │ ├── DistanceCalculation.swift │ ├── NormalizeEn.swift │ ├── SpellingMapping.swift │ └── WERUtils.swift │ ├── FunctionalTests.swift │ ├── RegressionTestUtils.swift │ ├── RegressionTests.swift │ ├── Resources │ ├── 8_Channel_ID.m4a │ ├── config-v02.json │ ├── config-v03.json │ ├── config-v04.json │ ├── es_test_clip.wav │ ├── ja_test_clip.wav │ ├── jfk.wav │ ├── jfk_441khz.m4a │ └── ted_60.m4a │ ├── TestUtils.swift │ ├── UnitTests.swift │ └── UnitTestsPlan.xctestplan ├── fastlane ├── Fastfile └── README.md └── scripts ├── generate_local_server_openapi.py ├── pyproject.toml ├── specs ├── localserver_openapi.yaml └── openapi-generator-config.yaml └── uv.lock /.github/workflows/development-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.github/workflows/development-tests.yml -------------------------------------------------------------------------------- /.github/workflows/expo-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.github/workflows/expo-update.yml -------------------------------------------------------------------------------- /.github/workflows/homebrew-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.github/workflows/homebrew-update.yml -------------------------------------------------------------------------------- /.github/workflows/release-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.github/workflows/release-tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftpm/configuration/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.swiftpm/configuration/Package.resolved -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/whisperkit-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/whisperkit-Package.xcscheme -------------------------------------------------------------------------------- /BENCHMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/BENCHMARKS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Curl/README.md -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Curl/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Curl/test.sh -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Curl/transcribe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Curl/transcribe.sh -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Curl/translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Curl/translate.sh -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/README.md -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/pyproject.toml -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/test_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/test_transcribe.py -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/test_translate.py -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/uv.lock -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Python/whisperkit_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Python/whisperkit_client.py -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Package.resolved -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Package.swift -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/README.md -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/CLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/CLI.swift -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/Generated/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/Generated/Client.swift -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/Generated/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Sources/WhisperKitSwiftClient/Generated/Types.swift -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/Sources/main.swift -------------------------------------------------------------------------------- /Examples/ServeCLIClient/Swift/updateClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/ServeCLIClient/Swift/updateClient.sh -------------------------------------------------------------------------------- /Examples/WhisperAX/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | // Run `make setup` to add your team here 2 | DEVELOPMENT_TEAM= 3 | -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX.xcodeproj/xcshareddata/xcschemes/WhisperAX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX.xcodeproj/xcshareddata/xcschemes/WhisperAX.xcscheme -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Info.plist -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024 2.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/120 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/128 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/128 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/136.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/192.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/44.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/58 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/58 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/60 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/60 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/64 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/64 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/80 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/80 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/87 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/87 1.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/Info.plist -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Resources/WhisperAX.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Resources/WhisperAX.entitlements -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/Views/ContentView.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAX/WhisperAXApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAX/WhisperAXApp.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXTests/WhisperAXTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXTests/WhisperAXTests.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXTests/WhisperKitTests: -------------------------------------------------------------------------------- 1 | ../../../Tests/WhisperKitTests -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXUITests/WhisperAXUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXUITests/WhisperAXUITests.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXUITests/WhisperAXUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXUITests/WhisperAXUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/WhisperAXExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/WhisperAXExampleView.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchApp/WhisperAXWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchApp/WhisperAXWatchApp.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchAppTests/WhisperAX_Watch_AppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchAppTests/WhisperAX_Watch_AppTests.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchAppUITests/WhisperAX_Watch_AppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchAppUITests/WhisperAX_Watch_AppUITests.swift -------------------------------------------------------------------------------- /Examples/WhisperAX/WhisperAXWatchAppUITests/WhisperAX_Watch_AppUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Examples/WhisperAX/WhisperAXWatchAppUITests/WhisperAX_Watch_AppUITestsLaunchTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Audio/AudioChunker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Audio/AudioChunker.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Audio/AudioProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Audio/AudioProcessor.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Audio/AudioStreamTranscriber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Audio/AudioStreamTranscriber.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Audio/EnergyVAD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Audio/EnergyVAD.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Audio/VoiceActivityDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Audio/VoiceActivityDetector.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/AudioEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/AudioEncoder.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Configurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Configurations.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/FeatureExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/FeatureExtractor.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Models.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Text/LogitsFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Text/LogitsFilter.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Text/SegmentSeeker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Text/SegmentSeeker.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/Text/TokenSampler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/Text/TokenSampler.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/TextDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/TextDecoder.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/TranscribeTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/TranscribeTask.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Core/WhisperKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Core/WhisperKit.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/Concurrency.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/Extensions+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/Extensions+Internal.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/Extensions+Public.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/Extensions+Public.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/Logging.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/ModelUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/ModelUtilities.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/ResultWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/ResultWriter.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/TextUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/TextUtilities.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/TranscriptionUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/TranscriptionUtilities.swift -------------------------------------------------------------------------------- /Sources/WhisperKit/Utilities/WhisperError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKit/Utilities/WhisperError.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/CLIUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/CLIUtils.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/Server/GeneratedSources/Server.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/Server/GeneratedSources/Server.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/Server/GeneratedSources/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/Server/GeneratedSources/Types.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/Server/OpenAIHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/Server/OpenAIHandler.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/Server/ServeCLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/Server/ServeCLI.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/Server/ServeCLIArguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/Server/ServeCLIArguments.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/TranscribeCLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/TranscribeCLI.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/TranscribeCLIArguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/TranscribeCLIArguments.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/TranscribeCLIUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/TranscribeCLIUtils.swift -------------------------------------------------------------------------------- /Sources/WhisperKitCLI/WhisperKitCLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Sources/WhisperKitCLI/WhisperKitCLI.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Evaluate/DistanceCalculation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Evaluate/DistanceCalculation.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Evaluate/NormalizeEn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Evaluate/NormalizeEn.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Evaluate/SpellingMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Evaluate/SpellingMapping.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Evaluate/WERUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Evaluate/WERUtils.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/FunctionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/FunctionalTests.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/RegressionTestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/RegressionTestUtils.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/RegressionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/RegressionTests.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/8_Channel_ID.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/8_Channel_ID.m4a -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/config-v02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/config-v02.json -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/config-v03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/config-v03.json -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/config-v04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/config-v04.json -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/es_test_clip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/es_test_clip.wav -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/ja_test_clip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/ja_test_clip.wav -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/jfk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/jfk.wav -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/jfk_441khz.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/jfk_441khz.m4a -------------------------------------------------------------------------------- /Tests/WhisperKitTests/Resources/ted_60.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/Resources/ted_60.m4a -------------------------------------------------------------------------------- /Tests/WhisperKitTests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/TestUtils.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/UnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/UnitTests.swift -------------------------------------------------------------------------------- /Tests/WhisperKitTests/UnitTestsPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/Tests/WhisperKitTests/UnitTestsPlan.xctestplan -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /scripts/generate_local_server_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/scripts/generate_local_server_openapi.py -------------------------------------------------------------------------------- /scripts/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/scripts/pyproject.toml -------------------------------------------------------------------------------- /scripts/specs/localserver_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/scripts/specs/localserver_openapi.yaml -------------------------------------------------------------------------------- /scripts/specs/openapi-generator-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/scripts/specs/openapi-generator-config.yaml -------------------------------------------------------------------------------- /scripts/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argmaxinc/WhisperKit/HEAD/scripts/uv.lock --------------------------------------------------------------------------------