Earlier quoted context omitted.
If you (or others) come up with a way to build a system to poison AI/LLM/other models to make them useless, count me in to help.
I’d imagine this is best possible via illegal methods such as mass hacking websites and inserting the appropriate poison
Sites scramble to block ChatGPT web crawler after instructions emerge
21–30 of 38 posts
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#22From the article: > For example, blocking content from future AI models could decrease a site's or a brand's cultural footprint if AI chatbots become a primary user interface in the future. I would rather leave the internet entirely if AI chatbots become a primary user interface.
What's interesting about your statement is that if you knew they were chatbots, then by definition, they wouldn't be AI. e.g. they wouldn't have passed the Turing test. I know what you're saying, and totally agree. Unfortunately the term "AI" is now meaningless.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#23> blocking GPTBot will not guarantee that a site's data does not end up training all AI models of the future. Aside from issues of scrapers ignoring robots.txt files, there are other large data sets of scraped websites (such as The Pile) that are not affiliated with OpenAI. This is why I'm not reassured. robots.txt isn't sufficient to stop all webcrawlers, so there every reason to think it isn't sufficient to stop AI…
There's never going to be a perfect solution, it's an arms race. I really doubt (hope?) that large entities are going to straight up emulate end-user browsers though. I would think filtering based on user agent will be the sweet spot for effort and performance. You could do some awful JavaScript monstrosity to detect the tiny fraction of bots who are sneaky, but if they're determined to be sneaky they will succeed at…
Really just encourages phones to be even more locked down
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#24From the article: > For example, blocking content from future AI models could decrease a site's or a brand's cultural footprint if AI chatbots become a primary user interface in the future. I would rather leave the internet entirely if AI chatbots become a primary user interface.
What's interesting about your statement is that if you knew they were chatbots, then by definition, they wouldn't be AI. e.g. they wouldn't have passed the Turing test. I know what you're saying, and totally agree. Unfortunately the term "AI" is now meaningless.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#25> blocking GPTBot will not guarantee that a site's data does not end up training all AI models of the future. Aside from issues of scrapers ignoring robots.txt files, there are other large data sets of scraped websites (such as The Pile) that are not affiliated with OpenAI. This is why I'm not reassured. robots.txt isn't sufficient to stop all webcrawlers, so there every reason to think it isn't sufficient to stop AI…
`if ($http_user_agent ~* ".*?(GPTBot|AI).*?") { return 410; }`
Its not perfect, but it should filter them indefinitely, will probably have to add some more terms in there over time.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#26From the article: > For example, blocking content from future AI models could decrease a site's or a brand's cultural footprint if AI chatbots become a primary user interface in the future. I would rather leave the internet entirely if AI chatbots become a primary user interface.
What's interesting about your statement is that if you knew they were chatbots, then by definition, they wouldn't be AI. e.g. they wouldn't have passed the Turing test. I know what you're saying, and totally agree. Unfortunately the term "AI" is now meaningless.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#27Instead, use a redirect or return a response code by doing a user agent check in your server config. I posted elsewhere in this thread on the way i did it with nginx
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#28For anyone reading this, you can skip the robots.txt, as others have pointed out, who knows if they will actually listen to it. Instead, use a redirect or return a response code by doing a user agent check in your server config. I posted elsewhere in this thread on the way i did it with nginx
If they won't reapect robots.txt, they aren't interested in your consent.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#29I wonder if its worth poisoning the replies for scrapers that don't obey robots.txt. Send back nonsense, lies, and noise. This would be an adversarial approach like https://adnauseam.io/ uses for ad tracking.
Re: Sites scramble to block ChatGPT web crawler after instructions emerge
#30From the article: > For example, blocking content from future AI models could decrease a site's or a brand's cultural footprint if AI chatbots become a primary user interface in the future. I would rather leave the internet entirely if AI chatbots become a primary user interface.
What's interesting about your statement is that if you knew they were chatbots, then by definition, they wouldn't be AI. e.g. they wouldn't have passed the Turing test. I know what you're saying, and totally agree. Unfortunately the term "AI" is now meaningless.