Skip to content

Commit 7968f40

Browse files
author
Simon Schubert
committed
Add default grow model and play store link to readme
1 parent 92fe6af commit 7968f40

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
A **cross-platform open-source AI interface** that runs on **Android, iOS, Windows, Mac, Linux, and Web**.
66

7+
https://simonschubert.github.io/Kai
8+
9+
<a href="https://play.google.com/store/apps/details?id=com.inspiredandroid.kai">
10+
<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" width="200">
11+
</a>
12+
713
### Supported services and models:
814

915
### Gemini
@@ -39,4 +45,4 @@ Lottie animation: https://lottiefiles.com/free-animation/loading-wDUukARCPj
3945

4046
GroqCloud: https://groq.com
4147

42-
Gemini: https://gemini.google.com
48+
Gemini: https://gemini.google.com

composeApp/src/commonMain/kotlin/com/inspiredandroid/kai/data/RemoteDataRepository.kt

+10-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@ class RemoteDataRepository(
1717
private val settings: Settings,
1818
) : DataRepository {
1919

20-
val groqModels: MutableStateFlow<List<SettingsModel>> = MutableStateFlow(emptyList())
20+
val groqModels: MutableStateFlow<List<SettingsModel>> = MutableStateFlow(
21+
listOf(
22+
SettingsModel(
23+
id = "llama-3.3-70b-versatile",
24+
subtitle = "Meta",
25+
description = "Context window: 128000",
26+
isSelected = true,
27+
),
28+
),
29+
)
2130
val geminiModels: MutableStateFlow<List<SettingsModel>> = MutableStateFlow(
2231
listOf(
2332
SettingsModel(

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
agp = "8.7.3"
33
appVersion = "1.0.2"
4-
android-versionCode = "4"
4+
android-versionCode = "5"
55
android-compileSdk = "35"
66
android-minSdk = "26"
77
android-targetSdk = "35"

0 commit comments

Comments
 (0)