From 823a7abba4ed2f711a75d4cef5ba22df3c4e1586 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Wed, 28 May 2025 09:28:41 +1000 Subject: [PATCH] Update tool args --- src/client/chat/createVirtualEnvTool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/chat/createVirtualEnvTool.ts b/src/client/chat/createVirtualEnvTool.ts index 04d9b2191c6a..78e3a5263d81 100644 --- a/src/client/chat/createVirtualEnvTool.ts +++ b/src/client/chat/createVirtualEnvTool.ts @@ -41,7 +41,7 @@ import { traceError, traceVerbose, traceWarn } from '../logging'; import { StopWatch } from '../common/utils/stopWatch'; interface ICreateVirtualEnvToolParams extends IResourceReference { - packageList: string[]; // Added only becausewe have ability to create a virtual env with list of packages same tool within the in Python Env extension. + packageList?: string[]; // Added only becausewe have ability to create a virtual env with list of packages same tool within the in Python Env extension. } export class CreateVirtualEnvTool implements LanguageModelTool {