voice-command-android/backlog/tasks/task-001 - Download-and-bun...

37 lines
805 B
Markdown

---
id: task-001
title: Download and bundle Whisper model
status: Done
assignee: []
created_date: '2025-12-07'
labels: [stt, release]
priority: high
dependencies: []
---
## Description
Download Whisper model files from sherpa-onnx releases and bundle with the app.
## Plan
1. Run `./download-models.sh` to fetch tiny.en model
2. Verify model files in `app/src/main/assets/models/`
3. Test model loading in emulator
## Acceptance Criteria
- [x] tiny.en-encoder.int8.onnx downloaded
- [x] tiny.en-decoder.int8.onnx downloaded
- [x] tokens.txt downloaded
- [x] Model loads successfully at runtime
## Notes
Model files downloaded successfully from sherpa-onnx releases:
- tiny.en-encoder.int8.onnx (13MB)
- tiny.en-decoder.int8.onnx (87MB)
- tokens.txt (816KB)
Build successful with 141MB debug APK.