Live data from Hacker News

Show HN: Semantic Search for Ctrl+F

chrome.google.com

11–20 of 28 posts

Re: Show HN: Semantic Search for Ctrl+F

#11

This is not the first time that we've had semantic search as a "Ctrl-F" replacement in chrome: I actually cited the precursor to this in one of my papers: https://chrome.google.com/webstore/detail/fuzbal/lidjpicdkcg...

Also actually open source: https://github.com/ijkilchenko/Fuzbal (MIT)

Re: Show HN: Semantic Search for Ctrl+F

#13
post #8

Earlier quoted context omitted.

You can download it with an extension like: https://chrome.google.com/webstore/detail/chrome-extension-s...

Where's the source code to that?

I know you are trying to be funny but you can just install it in a new profile and then inspect the extension on your machine, or use a website that downloads Chrome extensions or just use curl to download it from Google (https://stackoverflow.com/a/19665274).

Re: Show HN: Semantic Search for Ctrl+F

#14
post #2

Honestly I wouldn't even consider installing this because there is zero information about how it works and what it does with the data I type into it. Are my search terms sent to some random server to be "processed" and/or logged for analytics purposes, or is everything done locally? The single-line privacy policy is [woefully bare]( https://sites.google.com/view/scoutcrx/privacy ).

I looked at the source code and found `new a.OpenAIApi(new a.Configuration({ apiKey: ... }))`, so I assume it’s calling a remote endpoint.

Re: Show HN: Semantic Search for Ctrl+F

#15
post #3

"Any data about your use of Scout is not knowingly sold or offered to third parties or stored on our servers." Privacy policy seems to imply that data is being collected - would be good to clarify that. Does it rely on a server/API?

not sure, but could the privacy policy just be a requirement of Google and no data collection is taking place?

I had a look at the code. Despite the important note on https://github.com/openai/openai-node it appears to be in use here, leaking the author's API key.

Re: Show HN: Semantic Search for Ctrl+F

#16
Is this using OpenAI‘s GPT3 search endpoint? Someone here mentioned a code snippet from the extension that seems to suggest that. Reason I‘m asking: Last time I checked, OpenAI‘s GPT3 „search“ endpoint actually performed a lot worse than, say, a BM25 or fastText search (which has the added benefit that you can run it on your own server).

Re: Show HN: Semantic Search for Ctrl+F

#17
post #16

Is this using OpenAI‘s GPT3 search endpoint? Someone here mentioned a code snippet from the extension that seems to suggest that. Reason I‘m asking: Last time I checked, OpenAI‘s GPT3 „search“ endpoint actually performed a lot worse than, say, a BM25 or fastText search (which has the added benefit that you can run it on your own server).

Good point, I'll look into this to see if performance is improved.

Re: Show HN: Semantic Search for Ctrl+F

#20
post #10

Please do consider updating the image to be something that shows what is actually going on, because that one just makes it look like your extension draws highlights on a webpage. Bonus points for some animated gif or video or something showing how it changes as you type more stuff

Good idea, will get on that.
Post reply on HN