Compare commits
No commits in common. "main" and "v0.5-mmap21" have entirely different histories.
main
...
v0.5-mmap2
2 changed files with 3 additions and 4 deletions
|
|
@ -10,8 +10,8 @@ android {
|
||||||
applicationId = "de.ody"
|
applicationId = "de.ody"
|
||||||
minSdk = 28
|
minSdk = 28
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 6
|
versionCode = 5
|
||||||
versionName = "0.6.0"
|
versionName = "0.5.0"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
|
|
|
||||||
|
|
@ -741,9 +741,8 @@ fun ODYChatScreen(
|
||||||
)
|
)
|
||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
val noThinkSuffix = if (currentModelId?.contains("qwen3", ignoreCase = true) == true) "\n/no_think" else ""
|
|
||||||
val request = GenerationRequest(
|
val request = GenerationRequest(
|
||||||
userMessage = userText + noThinkSuffix,
|
userMessage = userText,
|
||||||
systemPrompt = null,
|
systemPrompt = null,
|
||||||
history = messages.dropLast(1)
|
history = messages.dropLast(1)
|
||||||
.filter { it.state == MessageState.COMPLETE }
|
.filter { it.state == MessageState.COMPLETE }
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue