code-interpreter
code-interpreter copied to clipboard
Support ES6 modules in JS runtime and top-level await
The JavaScript runtime is currently based on ijavascript kernel runtime. ijavascript kernel doesn't support import. Ideally, we should fix it and import should just work. Less ideally (and the "less" is big here), we need to put a disclaimer here for users.
Similarly with await. The await doesn't work in the top most scope. Eg running this code
const fs = require('node:fs');
const fetch = require('node-fetch');
console.log('Hello');
const url = 'https://jsonplaceholder.typicode.com/posts/1';
// Fetch data from the API
const response = await fetch(url);
const data = await response.text();
console.log(data);
will produce the following error
ExecutionError {
name: 'SyntaxError',
value: 'await is only valid in async functions and the top level bodies of modules',
tracebackRaw: [
'evalmachine.<anonymous>:10',
'const response = await fetch(url);',
' ^^^^^',
'',
'SyntaxError: await is only valid in async functions and the top level bodies of modules',
' at new Script (node:vm:94:7)',
' at createScript (node:vm:250:10)',
' at Object.runInThisContext (node:vm:298:10)',
' at run ([eval]:1020:15)',
' at onRunRequest ([eval]:864:18)',
' at onMessage ([eval]:828:13)',
' at process.emit (node:events:517:28)',
' at emit (node:internal/child_process:944:14)',
' at process.processTicksAndRejections (node:internal/process/task_queues:83:21)'
]
}
Deno's Jupyter kernel would tick both boxes (import and top-level await):
https://blog.jupyter.org/bringing-modern-javascript-to-the-jupyter-notebook-fc998095081e
We'd need to check if NPM dependencies work out of the box for users
I've attempted this.
Deno Jupyter kernel is installing and registering correctly, but unable to execute any code (in Docker). See: https://github.com/denoland/deno/issues/25325
@mlejva What's the correct way to await code execution?
hi folks, this is a complete blocker for me and IMO the JavaScript runtime is useless without it for anything other that completely toy examples.
I cannot imagine any useful output that does not use fetch, or a database, call an AI, etc.
I think the limitation is severe enough you might want to consider putting a notice on the website
I'll happily look into E2B again when you have this support. I like your API.