feat: implement next-gen vectorized engine, async architecture, and modernization roadmap v2.32.0

This commit is contained in:
Wonseok Jung
2026-04-30 23:44:36 +09:00
parent 39d46d7c54
commit cd1d6a3da8
20 changed files with 1086 additions and 282 deletions
+4 -2
View File
@@ -971,7 +971,7 @@ export class SidebarChatProvider implements vscode.WebviewViewProvider, BridgeIn
.header-controls { display: flex; gap: 8px; margin-left: auto; }
#promptInput::placeholder { color: var(--accent); opacity: 0.6; font-weight: 500; }
#input::placeholder { color: var(--accent); opacity: 0.6; font-weight: 500; }
.msg-body {
@@ -1863,7 +1863,9 @@ export class SidebarChatProvider implements vscode.WebviewViewProvider, BridgeIn
document.getElementById('historyBtn').addEventListener('click', () => historyOverlay.classList.add('visible'));
document.getElementById('closeHistoryBtn').onclick = () => historyOverlay.classList.remove('visible');
const updateInputPlaceholder = () => {
promptInput.placeholder = \`Ask \${modelSel.value}...\`;
if (typeof input !== 'undefined' && input) {
input.placeholder = \`Ask \${modelSel ? modelSel.value : 'AI'}...\`;
}
};
modelSel.onchange = () => {