fix: update Whisper Large Turbo download size - #787
Merged
altic-dev merged 1 commit intoAug 5, 2026
Conversation
double-thinker
marked this pull request as ready for review
August 5, 2026 11:55
Greptile SummaryCorrects the expected byte size used to validate the Whisper Large Turbo model download.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fix Whisper Large Turbo model validation by updating its expected download size from
886,381,824to the current Hugging Face file size of886,381,760bytes.The stale value caused every download to be rejected and deleted as corrupted.
Type of Change
Related Issue or Discussion
Closes #785
Testing
swiftlint --strict --config .swiftlint.yml Sources— 0 violations, 0 seriousswiftformat --config .swiftformat Sourcesxcodebuild test -project Fluid.xcodeproj -scheme Fluid -destination 'platform=macOS,arch=arm64' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -only-testing:FluidDictationIntegrationTestsScreenshots / Video
Notes
This is intentionally a focused one-line correction. The existing exact file-size validation remains unchanged for all models.
SwiftFormat 0.62.1 reports 60 of 138 existing source files requiring formatting, including pre-existing issues in
SettingsStore.swift. No unrelated formatting changes were included in this focused fix.