From a2540b14d184582e000b4ebaf93a4a36ac9f3a56 Mon Sep 17 00:00:00 2001 From: Shubh Gajjar <96479341+Shubhgajj2004@users.noreply.github.com> Date: Sun, 6 Jul 2025 23:13:32 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70ad8f8..78a59b1 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ class YourActivity : AppCompatActivity() { // Initialize WhisperKit // Note: Always use applicationContext to avoid memory leaks and ensure proper lifecycle management whisperKit = WhisperKit.Builder() - .setModel(WhisperKit.OPENAI_TINY_EN) + .setModel(WhisperKit.Builder.OPENAI_TINY_EN) .setApplicationContext(applicationContext) .setCallback { what, result -> // Handle transcription output From b973c77fa69b81d63e022f96c32d6eb80f27bb01 Mon Sep 17 00:00:00 2001 From: Shubh Gajjar <96479341+Shubhgajj2004@users.noreply.github.com> Date: Wed, 9 Jul 2025 23:50:04 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 78a59b1..576ae32 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,8 @@ dependencies { implementation("com.argmaxinc:whisperkit:0.3.2") // Check badge above for latest version // 2. QNN dependencies for hardware acceleration - implementation("com.qualcomm.qnn:qnn-runtime:2.34.0") - implementation("com.qualcomm.qnn:qnn-litert-delegate:2.34.0") + implementation("com.qualcomm.qti:qnn-runtime:2.34.0") + implementation("com.qualcomm.qti:qnn-litert-delegate:2.34.0") } ```