Bump version to 2.2.27 and update package

This commit is contained in:
2026-05-18 16:36:41 +09:00
parent 26fdce6525
commit 0834608f7e
16 changed files with 33 additions and 1151 deletions
+1 -2
View File
@@ -3603,7 +3603,7 @@ export class SidebarChatProvider implements vscode.WebviewViewProvider, BridgeIn
async _handlePrompt(data: any) {
if (!this._view) return;
const { value, model, internet, files, agentFile, negativePrompt, designerGuard, secondBrainTrace, secondBrainTraceDebug, brainProfileId } = data;
const { value, model, files, agentFile, negativePrompt, designerGuard, secondBrainTrace, secondBrainTraceDebug, brainProfileId } = data;
this._currentNegativePrompt = negativePrompt || '';
const selectedBrainId = typeof brainProfileId === 'string' && brainProfileId && brainProfileId !== 'new'
? brainProfileId
@@ -3773,7 +3773,6 @@ export class SidebarChatProvider implements vscode.WebviewViewProvider, BridgeIn
try {
await this._agent.handlePrompt(processedPrompt, effectiveModel || model, {
internetEnabled: internet,
visionContent: imageFiles,
agentSkillContext,
agentSkillFile: typeof agentFile === 'string' ? agentFile : undefined,