We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I use --remotetunnel, it downloads cloudflared (even if I have it already in my system,
anyway, running with --remotetunnel, the tunnel breaks after a while (few minutes).
if instead I do:
#!/bin/bash ./koboldcpp-linux-x64-nocuda --model llama3 &>ai.log & sleep 3 cloudflared tunnel --url http://localhost:5001 &>cft.log & disown -a while ! grep -q " https" cft.log; do sleep 0.5; done echo "Connect to:" grep " https" cft.log |cut -d " " -f 5
everything works. I don't know exactly what is wrong but that is the way I use.
The text was updated successfully, but these errors were encountered:
It'll download cloudflared if it can't find the file. I'm not sure why the tunnel would break
Sorry, something went wrong.
It might have to do in the way you manage the output. Cloudlfared must output data as a stream and not be interrupted or stopped.
No branches or pull requests
If I use --remotetunnel, it downloads cloudflared (even if I have it already in my system,
anyway, running with --remotetunnel, the tunnel breaks after a while (few minutes).
if instead I do:
everything works.
I don't know exactly what is wrong but that is the way I use.
The text was updated successfully, but these errors were encountered: