From edb47272ccfb1a304e98fcd9f703bcc7fb071f91 Mon Sep 17 00:00:00 2001 From: HyeonseoNam Date: Fri, 11 Jul 2025 02:53:53 +0900 Subject: [PATCH] chore: Edit minor sentence --- src/settings.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/settings.ts b/src/settings.ts index 49a5af9..9439929 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -184,7 +184,7 @@ export class AutoClassifierSettingTab extends PluginSettingTab { baseUrlSetting.createEl('div', { text: '• Local OpenAI-compatible API (Ollama, LocalAI):' }); baseUrlSetting.createEl('div', { text: ' - Ollama: http://localhost:11434/v1' }); baseUrlSetting.createEl('div', { text: ' - LocalAI: http://localhost:8080/v1' }); - baseUrlSetting.createEl('div', { text: ' ⚠️ Ollama/LocalAI는 완벽한 호환성이 보장되지 않으므로 충분한 테스트가 필요.' }); + baseUrlSetting.createEl('div', { text: ' ⚠️ Ollama/LocalAI are not fully compatible currently.' }); baseUrlSetting.style.marginLeft = '20px'; baseUrlSetting.style.fontSize = '0.9em'; baseUrlSetting.style.color = 'var(--text-muted)'; @@ -207,7 +207,6 @@ export class AutoClassifierSettingTab extends PluginSettingTab { modelSetting.createEl('div', { text: 'Recommended for OpenAI: gpt-4.1-mini, gpt-4.1, gpt-4o' }); modelSetting.createEl('div', { text: '• OpenAI: gpt-4.1-mini, gpt-4.1, gpt-4o' }); modelSetting.createEl('div', { text: '• Local OpenAI-compatible API (Ollama, LocalAI): llama3, mistral, phi3, qwen2 등' }); - modelSetting.createEl('div', { text: ' ⚠️ Ollama/LocalAI는 완벽한 호환성이 보장되지 않으므로 충분한 테스트가 필요.' }); modelSetting.style.marginLeft = '20px'; modelSetting.style.fontSize = '0.9em'; modelSetting.style.color = 'var(--text-muted)';