chore: remove verbose helper text from engine select (v1.0.24)

This commit is contained in:
Jay
2026-04-13 15:33:45 +09:00
parent 23c8910799
commit 6ced54321c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -268,8 +268,8 @@ class SidebarChatProvider implements vscode.WebviewViewProvider {
if (!this._view) return;
const pick = await vscode.window.showQuickPick([
{ label: 'Ollama (로컬 기본)', description: '초보자 추천', action: 'ollama' },
{ label: 'LM Studio (고급형)', description: '맥북/고급 유저 추천', action: 'lmstudio' },
{ label: 'Ollama', description: '', action: 'ollama' },
{ label: 'LM Studio', description: '', action: 'lmstudio' },
], { placeHolder: 'AI 엔진을 선택하세요' });
if (!pick) return;