You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Toast.makeText(context, "Please subscribe to the app to continue.", Toast.LENGTH_LONG).show()
419
+
Toast.makeText(context, "Please support the development of the app so that you can continue using it \uD83C\uDF89", Toast.LENGTH_LONG).show()
419
420
} else {
420
421
if (menuItem.routeId =="photo_reasoning") {
421
422
val mainActivity = context as?MainActivity
@@ -489,7 +490,7 @@ fun MenuScreen(
489
490
)
490
491
} else {
491
492
Text(
492
-
text ="Support improvements",
493
+
text ="Support Improvements \uD83C\uDF89",
493
494
style =MaterialTheme.typography.titleMedium,
494
495
modifier =Modifier.weight(1f)
495
496
)
@@ -510,15 +511,28 @@ fun MenuScreen(
510
511
.fillMaxWidth()
511
512
.padding(horizontal =16.dp, vertical =8.dp)
512
513
) {
514
+
val boldStyle =SpanStyle(fontWeight =FontWeight.Bold)
513
515
val annotatedText = buildAnnotatedString {
514
-
append("""• Preview models could be deactivated by Google without being handed over to the final release.
515
-
• GPT-oss 120b is a pure text model.
516
-
• Gemma 3n E4B it cannot handle screenshots in the API.
517
-
• GPT models (Vercel) have a free budget of $5 per month.
518
-
GPT-5.1 Input: $1.25/M Output: $10.00/M
519
-
GPT-5.1 mini Input: $0.25/ M Output: $2.00/M
520
-
GPT-5 nano Input: $0.05/M Output: $0.40/M
521
-
• There are rate limits for free use of Gemini models. The less powerful the models are, the more you can use them. The limits range from a maximum of 5 to 30 calls per minute. After each screenshot (every 2-3 seconds) the LLM must respond again. More information is available at """)
516
+
append("• ")
517
+
withStyle(boldStyle) { append("Preview Models") }
518
+
append(" could be deactivated by Google without being handed over to the final release.\n")
519
+
append("• ")
520
+
withStyle(boldStyle) { append("GPT-oss 120b") }
521
+
append(" is a pure text model.\n")
522
+
append("• ")
523
+
withStyle(boldStyle) { append("Gemma 27B IT") }
524
+
append(" cannot handle screenshots in the API.\n")
525
+
append("• GPT models (")
526
+
withStyle(boldStyle) { append("Vercel") }
527
+
append(") have a free budget of \$5 per month and a credit card is necessary.\n")
append(". The less powerful the models are, the more you can use them. The limits range from a maximum of 5 to 30 calls per minute. After each screenshot (every 2-3 seconds) the LLM must respond again. More information is available at ")
0 commit comments