···6464// Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html
6565// but increasing limit per user feedback
6666export const MAX_ALT_TEXT = 2000
6767-export const DEFAULT_ALT_TEXT_AI_MODEL = 'qwen/qwen3.5-122b-a10b'
6868-export const DEFAULT_ALT_TEXT_AI_PROMPT = 'Write alt text for this image. Be concise — 1-2 sentences for simple images. If the image contains readable text, transcribe it rather than describing it. Only describe what you can clearly see; do not guess at names or details.'
6767+export const DEFAULT_ALT_TEXT_AI_MODEL = 'google/gemma-4-26b-a4b-it:free'
6868+export const DEFAULT_ALT_TEXT_AI_PROMPT =
6969+ 'Write alt text for this image. Be concise — 1-2 sentences for simple images. If the image contains readable text, transcribe it rather than describing it. Only describe what you can clearly see; do not guess at names or details.'
69707071export const MAX_REPORT_REASON_GRAPHEME_LENGTH = 2000
7172
+1
src/screens/Settings/RunesSettings.tsx
···88import {type NativeStackScreenProps} from '@react-navigation/native-stack'
991010import {
1111+ APPVIEW_DID_PROXY,
1112 DEFAULT_ALT_TEXT_AI_MODEL,
1213 DEFAULT_ALT_TEXT_AI_PROMPT,
1314} from '#/lib/constants'