8 ms·
They proclaim "privacy-respecting" but all your keystrokes go to OpenAI. Horrific and genuinely upsetting. Edit: The author replied to another comment that the
by Technetium 2y ago
They proclaim "privacy-respecting" but all your keystrokes go to OpenAI. Horrific and genuinely upsetting.
Edit: The author replied to another comment that there is an intent to add local AI. If that is the plan, then fix the wording until it can actually be considered privacy-respecting: https://news.ycombinator.com/item?id=41579144 https://news.ycombinator.com/item?id=41579144
- segmondy 2y agomuch ado about nothing, the code is there, edit it and use a local AI.
- contagiousflow 2y agoBut the code as give is said to respect privacy.
- sharemywin 2y agosettings for opting out of training etc. for OpenAI https://help.openai.com/en/articles/7730893-data-controls-faq https://help.openai.com/en/articles/7730893-data-controls-fa...
- lawlessone 2y agoBe surprised if thats honored
- deleted 2y ago[deleted]
- deleted 2y ago[deleted]
- charlie0 2y agoLol, this was my second thought immediately after my first, which was one of excitement. Hope the author does add a option for local. Wonder how that would work as a Chrome extension. Doesn't seem like a good idea for extensions to be accessing local resources though.
- mdaniel 2y ago> Doesn't seem like a good idea for extensions to be accessing local resources though. To the best of my knowledge all localhost connections are exempt from CORS and that's in fact how the 1Password extension communicates with the desktop app. I'd bet Bitwarden and KeePassXC behave similarly
- fph 2y agoYou can self-host Languagetool and use it as a Chrome/Firefox extension. The extension talks to a Languagetool server via HTTP, and takes its address as a configurable option. So you just run the local server, and pass localhost:8080 as the server address.
- Eisenstein 2y agoDownload koboldcpp and llama3.1 gguf weights, use it with the llama3 completions adapter. Edit the 'background.js' file in the extension and replace the openAI endpoint with 'http://your.local.ip.addr:5001/v1/chat/completions http://your.local.ip.addr:5001/v1/chat/completions' Set anything you want as an API key. Now you have a truly local version. * https://github.com/LostRuins/koboldcpp/releases https://github.com/LostRuins/koboldcpp/releases * https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-... * https://github.com/LostRuins/koboldcpp/blob/concedo/kcpp_adapters/Llama-3.json https://github.com/LostRuins/koboldcpp/blob/concedo/kcpp_ada...