chore: remove verbose helper text from engine select (v1.0.24)
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"name": "connect-ai-lab",
|
"name": "connect-ai-lab",
|
||||||
"displayName": "Connect AI",
|
"displayName": "Connect AI",
|
||||||
"description": "100% 로컬 AI 코딩 에이전트 — 파일 생성, 코드 편집, 터미널 실행을 오프라인으로. Ollama + Gemma/Llama/DeepSeek 지원.",
|
"description": "100% 로컬 AI 코딩 에이전트 — 파일 생성, 코드 편집, 터미널 실행을 오프라인으로. Ollama + Gemma/Llama/DeepSeek 지원.",
|
||||||
"version": "1.0.23",
|
"version": "1.0.24",
|
||||||
"publisher": "connectailab",
|
"publisher": "connectailab",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/icon.png",
|
"icon": "assets/icon.png",
|
||||||
|
|||||||
+2
-2
@@ -268,8 +268,8 @@ class SidebarChatProvider implements vscode.WebviewViewProvider {
|
|||||||
if (!this._view) return;
|
if (!this._view) return;
|
||||||
|
|
||||||
const pick = await vscode.window.showQuickPick([
|
const pick = await vscode.window.showQuickPick([
|
||||||
{ label: 'Ollama (로컬 기본)', description: '초보자 추천', action: 'ollama' },
|
{ label: 'Ollama', description: '', action: 'ollama' },
|
||||||
{ label: 'LM Studio (고급형)', description: '맥북/고급 유저 추천', action: 'lmstudio' },
|
{ label: 'LM Studio', description: '', action: 'lmstudio' },
|
||||||
], { placeHolder: 'AI 엔진을 선택하세요' });
|
], { placeHolder: 'AI 엔진을 선택하세요' });
|
||||||
|
|
||||||
if (!pick) return;
|
if (!pick) return;
|
||||||
|
|||||||
Reference in New Issue
Block a user