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
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "connect-ai-lab",
"displayName": "Connect AI",
"description": "100% 로컬 AI 코딩 에이전트 — 파일 생성, 코드 편집, 터미널 실행을 오프라인으로. Ollama + Gemma/Llama/DeepSeek 지원.",
"version": "1.0.23",
"version": "1.0.24",
"publisher": "connectailab",
"license": "MIT",
"icon": "assets/icon.png",
+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;