Open 0wwafa opened 1 month ago
When using --remotetunnel, sometimes the tunnels timeout on inactivity.
Solution add something like this in the web client:
setInterval(async ()=>await fetch("/api/v1/model").then(r=>r.text()),20000);
You can probably add a third party script to do that. But it's more likely an issue with your network setup, other people don't have a problem
When using --remotetunnel, sometimes the tunnels timeout on inactivity.
Solution add something like this in the web client:
setInterval(async ()=>await fetch("/api/v1/model").then(r=>r.text()),20000);