Skip to content

Commit f18428a

Browse files
committed
release: prepare for release v14
1 parent fa603a5 commit f18428a

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
- App size is now reduced to half compared to the previous release. This is because the way
2-
`llama.cpp` was integrated into the project has been changed, allowing for better compiler
3-
optimizations and LTO (link-time optimization).
1+
- The app now supports automatic recognition (speech-to-text) for providing queries to the model.
2+
The speech-to-text capabilities are powered
3+
by [Moonshine](https://github.com/moonshine-ai/moonshine) and the packaged models could be found
4+
on [HuggingFace](https://huggingface.co/shubhxm0204/moonshine-asr-models/tree/main).
5+
- The speech is transformed into text during an on-device ASR model provided by Moonshine. Users
6+
will only require an internet connection when downloading the ASR models from the abovementioned
7+
HuggingFace Models repository.
8+
- Currently supported languages are English (`en`) and Chinese (`zh`). Although Moonshine supports
9+
more languages at the moment, SmolChat will add support for them in the future.
410

5-
- The app allows benchmarking the model used in a chat. Go to `Settings > Benchmark Model` in any
6-
chat and click 'Start Benchmarking'. The benchmark results are `pp` (tokens/sec for prompt
7-
processing) and `tg` (tokens/sec for token generation).
11+
- UI enhancements when downloading models from HuggingFace. Thanks to Gemini in Android Studio, the
12+
UI of the HuggingFace model browser screens has been improved and modernized.
13+
14+
- A bug causing the app to crash after modifying model settings has been resolved (#114). Thanks to
15+
@jkkj for the contribution.

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
applicationId = "io.shubham0204.smollmandroid"
1616
minSdk = 26
1717
targetSdk = 35
18-
versionCode = 13
19-
versionName = "13"
18+
versionCode = 14
19+
versionName = "14"
2020

2121
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2222
}

0 commit comments

Comments
 (0)