Is it possible to run this type of code within a script in Windmill to have interactivity? ``` import * as readline from "node:readline/promises"; import { stdin as input, stdout as output } from "node:process"; const rl = readline.createInterface({ input, output }); ```