Using ChatGPT

Working with ChatGPT: I’m using it on a standalone Template.
What other additional setting up considerations are necessary to be comfortable (safe) working with ChatGPT (firewall and etcs).
or is better to work in and with disposable templates,
As not security specialist I’m proud to get advice from the Qubes community

Q: Isn’t ChatGPT just a website? :thinking: How are you using?

If you’re just using it via a website, then there’s no added value in using in a standalone template.

In the end it all comes down to what are you concerned about:

  • a website knowing your identity, look for “chat gpt proxy”
  • a particular website getting access to your computer
  • etc.

What’s your situation?

1 Like

This rule works for me:

# chatGPT
allow_chatGPT(){
qvm-firewall $fw_qube add accept proto=tcp dstports=443 dsthost=“chat_openai_com”
qvm-firewall $fw_qube add accept proto=tcp dstports=443 dsthost=“auth0_openai_com”
qvm-firewall $fw_qube add accept proto=tcp dstports=443 dsthost=“openai_com”
qvm-firewall $fw_qube add accept proto=tcp dstports=443 dsthost=“cdn_auth0_com”
qvm-firewall $fw_qube add accept proto=tcp dstports=443 dsthost=“cdn_openai_com”
}
allow_chatGPT

You’d like to replace the underscores in dsthost=“” by dots as I wasn’t allowed to post links…

1 Like