Removed log statements
All checks were successful
Publish Library / Build NPM Project (push) Successful in 36s
Publish Library / Tag Version (push) Successful in 10s

This commit is contained in:
2026-03-02 14:00:58 -05:00
parent 5d34652d46
commit 06dda88dbc
3 changed files with 1 additions and 3 deletions

View File

@@ -105,7 +105,6 @@ export const JSTool: AiTool = {
code: {type: 'string', description: 'CommonJS javascript', required: true}
},
fn: async (args: {code: string}) => {
console.log('executing js')
const c = consoleInterceptor(null);
const resp = await Fn<any>({console: c}, args.code, true).catch((err: any) => c.output.error.push(err));
return {...c.output, return: resp, stdout: undefined, stderr: undefined};