This looks like it's just throwing your Search query directly into ChatGPT and sending you back the result. (Source code[0])
This is less intelligent than what Bing is doing with (presumably) scraping the pages and then generating embeddings to add "context" for your query.
There isn't a "generic" project that I've seen that's doing this yet, but I could see somebody extending this plugin to scrape the first ~5 pages and then feed that into ChatGPT as the "context" for answering the question.
We've been doing something similar with another Open Source project called Buff[1] but it requires scraping the data yourself before you can ask it questions. (We're scraping vulnerability/CVE data and putting it into the Vector database via OpenAI's embeddings API. You can play around with it on our Discord server linked from my profile.)
Is anybody else aware of any other projects to make search more useful?
WebChatGPT does almost what you suggest. However, it does not actually scrape the result pages but instead uses the snippets on the DDG result page as the context to ChatGPT. https://github.com/qunash/chatgpt-advanced
For those interested, I think chatgpt4google[1] has a much cleaner implementation and works on a wide range of search engines and browsers. They also have an option to switch the searchengine from ChatGPT to OpenAI GPT3
I really hope no one uses this. Kinda defeats the purpose of DuckDuckGo when all your searches are being sent to OpenAI to read and use to train AI models..
OpenAI's privacy policy makes this a no go for me. DDG's privacy policy claims they do not log IP addresses, where as OpenAI collects info such as your phone number and logs your IP.
Privacy policies are only somewhat better than pinky promises, but in this case the promise is the main reason most people use DDG. I would not search on DDG if the privacy benefit was eliminated.
https://www.perplexity.ai/ is also doing that but in a better way IMHO. you can just enter search text and it will google it for you and summarize the best hits by using GPT-3, still presenting the best hits in a list.
I do about half of my searches now in perplexity because you get really relevant links. I use google only for trivial searches.
Installed all the addons and the script. Dialog box appeared in DDG , kept searching for results but did not return anything. Is there something amiss?
This is less intelligent than what Bing is doing with (presumably) scraping the pages and then generating embeddings to add "context" for your query.
There isn't a "generic" project that I've seen that's doing this yet, but I could see somebody extending this plugin to scrape the first ~5 pages and then feed that into ChatGPT as the "context" for answering the question.
We've been doing something similar with another Open Source project called Buff[1] but it requires scraping the data yourself before you can ask it questions. (We're scraping vulnerability/CVE data and putting it into the Vector database via OpenAI's embeddings API. You can play around with it on our Discord server linked from my profile.)
Is anybody else aware of any other projects to make search more useful?
0: https://github.com/adamlui/userscripts/blob/master/chatgpt/d...
1: https://github.com/getbuff/Buff/