thewh1teagle / vibe

Transcribe on your own!
https://thewh1teagle.github.io/vibe/
MIT License
442 stars 30 forks source link

[Bug]: Not detecting Internet Connexion #97

Closed faxotherapy closed 1 month ago

faxotherapy commented 1 month ago

What happened?

After launching app on Ubuntu, app tells us “no connexion”. I then press “try again” and nothing happens.

Since the app does not connect to the Internet, I guess I have to download a LLM. Should I download that and put it straight anywhere in the database folder ? Or, is there a specific folder where I should insert the model?

Thank you.

Steps to reproduce

  1. Launch app on Ubuntu
  2. “no connexion” message appears. Press “try again”, and it should not work.

What OS are you seeing the problem on?

Linux

Relevant log output

# OK, where is the log hidden? Thank you.
# I just saw the log folder is empty…
thewh1teagle commented 1 month ago

Hey Thanks for reporting!

I'm not sure why it doesn't detect internet connection.

What the program does for checking is same as executing

nc -z 8.8.8.8 53

Can you check this command in the terminal? maybe for some reason this ip/port is blocked for you? If it's blocked, maybe I'll add additional ip to check against. You can try also against cloudflare

nc -z 1.1.1.1 53

You can download the model manually, I can provide instructions, but better then that - we can simply solve this by find out why it's blocked for you and I'll release new version.

faxotherapy commented 1 month ago

Hi, thx for your prompt reply. Strangely enough, those servers are well reached using nc on my end.

thewh1teagle commented 1 month ago

That's really strange. maybe port 53 is blocked for the app somehow. I think I fixed it, try to update with

cd /tmp
wget -q --show-progress https://github.com/thewh1teagle/vibe/releases/download/v2.0.1/vibe_2.0.1_amd64.deb
sudo apt install ./vibe_2.0.1*.deb --reinstall
RUST_LOG=debug vibe

It will install latest version and show logs in the terminal If it still doesn't work, see the logs in the terminal

faxotherapy commented 1 month ago

OK, I did reset the app, then launched it using above cmds. As soon as app started, it automatically downloaded the medium model.

thewh1teagle commented 1 month ago

OK, I did reset the app, then launched it using above cmds. As soon as app started, it automatically downloaded the medium model.

Awesome!