diff --git a/templates/components/engines/typescript/agent/tools/interpreter.ts b/templates/components/engines/typescript/agent/tools/interpreter.ts index aec3029c452c642a4f1b8523a7932965d10656eb..9522ab85eee27b185a5badb382e30c73bf7e580b 100644 --- a/templates/components/engines/typescript/agent/tools/interpreter.ts +++ b/templates/components/engines/typescript/agent/tools/interpreter.ts @@ -107,10 +107,13 @@ export class InterpreterTool implements BaseTool<InterpreterParameter> { async call(input: InterpreterParameter): Promise<InterpreterToolOutput> { const result = await this.codeInterpret(input.code); - await this.codeInterpreter?.close(); return result; } + async close() { + await this.codeInterpreter?.close(); + } + private async getExtraResult( res?: Result, ): Promise<InterpreterExtraResult[]> {