fix(desktop): recommend the model the app actually uses
Some checks failed
deploy-site / deploy (push) Failing after 13m48s

The Ollama setup guide still led with two retired models while the app already
defaults to the newer one, so a fresh setup would install a model the app does
not use. The guide now recommends the same model as the rest of the app and
lists current lightweight alternatives.
This commit is contained in:
Yun Chan 2026-09-18 17:15:37 +09:00
parent f14341ace4
commit 57c17d0977
25 changed files with 65 additions and 56 deletions

View file

@ -59,29 +59,29 @@ interface RecommendedModel {
const RECOMMENDED_MODELS: RecommendedModel[] = [
{
id: 'gemma2:2b',
name: 'Gemma 2 (2B)',
size: '1.6 GB',
description: '구글 경량 모델. 빠른 응답 속도와 저사양 PC에 최적화 (기본 추천)',
id: 'gemma4:e4b',
name: 'Gemma 4 (E4B)',
size: '약 4 GB',
description: '이 앱의 기본 로컬 모델. 추론 토큰을 쓰지 않아 받아쓰기 다듬기에 가장 빠름 (기본 추천)',
recommended: true,
},
{
id: 'llama3.2:3b',
name: 'Llama 3.2 (3B)',
size: '2.0 GB',
description: '메타의 최신 경량 모델. 텍스트 다듬기 및 문법 교정에 우수',
description: '메타의 경량 모델. 문법 교정과 톤 조절에 균형이 좋음',
},
{
id: 'qwen2.5:3b',
name: 'Qwen 2.5 (3B)',
size: '1.9 GB',
description: '한국어 및 다국어 이해도가 매우 뛰어난 고성능 모델',
description: '한국어·다국어 이해도가 뛰어남',
},
{
id: 'gemma2:9b',
name: 'Gemma 2 (9B)',
size: '5.4 GB',
description: '고성능 모델. 복잡한 요약 및 번역에 적합 (RAM 16GB+ 권장)',
id: 'phi4',
name: 'Phi 4',
size: '9.1 GB',
description: '요약·번역 품질이 높음 (RAM 16GB+ 권장)',
},
]