I would love to know if there is a way to set the ...
# 🌎general
e
I would love to know if there is a way to set the speed and simulated typing effect to control the flow speed of the AI bot. Or should this just be programmed with a delay? I have tried it this way "await new Promise((resolve) => setTimeout(resolve, 5000)) // The code above uses the
setTimeout
function to simulate a 5-second delay. The
await
keyword is used to wait for the promise to resolve before continuing execution. "