| import { emit } from "../core/system_bus.js"; | |
| window.sendInput = async function () { | |
| const input = document.getElementById("input").value; | |
| const response = await emit("USER_INPUT", { | |
| text: input | |
| }); | |
| document.getElementById("output").innerHTML = response.message; | |
| } |