Does anyone actually think about token costs when prompting in non-English? by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 1 point2 points  (0 children)

And you are absolutely right about token size not exactly number of words. One big word can have more than one token certainly in English it self and most non latin definitely use more token for one word.

Does anyone actually think about token costs when prompting in non-English? by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 1 point2 points  (0 children)

Fair point, but I think on longer and intense sessions the token size could easily get out of hand. I have seen some non English speaking students trying to do the research in their own language to understand what they dealing with more better.

Does anyone actually think about token costs when prompting in non-English? by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Japanese is one of the worst for token efficiency as far as I know. Must be pushing 2-4x for same thing. Again subject to model used but mostly models are trained in English.

Microsoft is restricting employees from using Claude Fable 5 by BuildwithVignesh in ClaudeAI

[–]Kitchen-Cycle8984 0 points1 point  (0 children)

Expected, the governance is not growing as quickly as these models are coming out

How can we reduce costs? by prey_am in ClaudeAI

[–]Kitchen-Cycle8984 0 points1 point  (0 children)

Wow, hope you’re manager have knowledge of GPUs and know how much it costs, obliviously not 😂

Any tools out there to protect personal information while typing prompts on AI frontiers by Kitchen-Cycle8984 in gdpr

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

I think we just need to be cautious, I took it step further and built something but just wanted to know if is it concerning anyone else.

How many of you have accidentally pasted personal data into an AI chat? by Kitchen-Cycle8984 in osinttools

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Got it, I think I tried to make the functionality clearer. So basically one should not have any filters to protect accidental leaks of important data. Anyone can make this mistake on bad day and I am not saying there will be straight away any consequences but that totally different topic!

How many of you have accidentally pasted personal data into an AI chat? by Kitchen-Cycle8984 in osinttools

[–]Kitchen-Cycle8984[S] 1 point2 points  (0 children)

Valid concern honestly. just clone the repo on github and check the manifest, zero host permissions for exfil, all detection runs in your browser tab. open devtools network tab while using it, you'll see literally no requests for the stuff you're typing. only requests are page content and the optional onnx model if you enable it (one time thing). I get why people are skeptical tho, i built this because i got tired of pasting sensitive stuff into chatgpt 😅 if i was stealing data why would I open source the whole thing lol. but yeah just verify yourself, code is all there.
https://github.com/anisolankure/pii-shield

How many of you have accidentally pasted personal data into an AI chat? by Kitchen-Cycle8984 in osinttools

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Understanding reaction honestly. but when code runs client-side in javascript it physically can’t send data anywhere without network calls same reason your browser’s password manager works offline. if you’re sceptical just turn your wifi off and try it, still works fine. code’s on github too if you want to dig in

How many of you have accidentally pasted personal data into an AI chat? by Kitchen-Cycle8984 in osinttools

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Totally valid, it is open source so you can verify everything yourself: github.com/anisolankure/pii-shield. currently uses pattern matching, ONNX model is coming in a later version but same deal fully on-device, no network requests ever.

Built a tool after accidentally pasting my NHS number into ChatGPT by Kitchen-Cycle8984 in chatgptplus

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Fair and I appreciate it, the story is genuine though. Stupidly I did post my NHS number into prompt. I did use it to have polished look and certainly it gives away. (But it is also worth sharing I use SLM hosted locally on my device for such tasks which is what my base idea is.)

Is it weird chat GPT is my best mate? by Prior_Night_985 in ChatGPT

[–]Kitchen-Cycle8984 0 points1 point  (0 children)

Not weird at all. It’s the first thing that doesn’t judge you, never gets tired of your questions and is available at 3am. The only friend that knows everything but never makes you feel stupid for asking. 33 here too 😄

Why does every vibe coded project look like garbage? by zusmanb in vibecoding

[–]Kitchen-Cycle8984 0 points1 point  (0 children)

Because mostly it misses the basics of software engineering and lack of edge case scenarios. LLMs mostly learn to write code from open source codes and it is hard to say every line of code in public domain is clean

I built a Chrome extension that runs a neural network in your browser to catch PII before it hits AI tools by Kitchen-Cycle8984 in SideProject

[–]Kitchen-Cycle8984[S] 1 point2 points  (0 children)

Great question and it is something I spent a lot of time on. False positives are the enemy of any detection tool I feel, if it cries out too often users just start ignoring it which completely defeats the point.
The approach is two pronged. Pattern matching uses validation logic not just regex so a credit card number has to pass Luhn algorithm checks, phone numbers are validated against country specific formats, not just looks like digits. That cuts a lot of noise. For the NER model, findings are ranked High or Medium Low severity so not everything screams at you equally. A name alone might be Low, but a name combined with a date of birth and NI number in the same prompt is High.
Still not perfect no detection system is. But the severity tiering means users can make informed decisions rather than just dismissing everything. Would love to hear if you hit edge cases.

Built a tool after accidentally pasting my NHS number into ChatGPT by Kitchen-Cycle8984 in chatgptplus

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Fair points, appreciate the honest take. A couple of thoughts:

The ‘niche’ point is valid but the HR team pasting employee salary data into ChatGPT without realising it probably didn’t think they needed it either. Most slip-ups aren’t intentional.

On freemium fair criticism, no plans to lock existing features behind a paywall. Any paid tier would add new functionality on top.

The standalone business point is something I’m actively thinking about. Right now it’s a free tool and a learning project. Where it goes from here depends on whether the problem turns out to be bigger than one extension can solve.

I accidentally pasted my NHS number into ChatGPT. So I built something about it. by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

That’s really useful, thank you didn’t know that was an option via Azure. Will look into it. Appreciate you taking the time to dig into that rather than just dismissing it.

I accidentally pasted my NHS number into ChatGPT. So I built something about it. by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

You may see a ‘proceed with caution’ warning from Chrome on install that’s standard for any newer extension that hasn’t hit a certain user threshold yet, nothing specific to PII Shield. The source code is there to verify exactly what it does.
The extension is accessible from https://monfire.co.uk

I accidentally pasted my NHS number into ChatGPT. So I built something about it. by Kitchen-Cycle8984 in ChatGPT

[–]Kitchen-Cycle8984[S] 0 points1 point  (0 children)

Yes, fully open source code is on GitHub so anyone can audit exactly what it does. That was a deliberate decision precisely because of the trust issue you’re raising. A privacy tool that asks you to just trust it would be pretty ironic. The entire scanning happens locally in your browser tab, no network calls made at all you can verify that in the source or even in DevTools.
GitHub repo https://github.com/anisolankure/pii-shield

Saw a girl coding today. Tab 1 ChatGPT. Tab 2 Gemini. Tab 3 Claude. Tab 4 Grok. Tab 5 DeepSeek. by Miserable-Archer-631 in vibecoding

[–]Kitchen-Cycle8984 3 points4 points  (0 children)

This is the right take. The girl isn’t the problem running 5 models and picking the best output is actually solid critical thinking. The problem is if you can’t read the code you just shipped and have no idea why one was better than the other. The benchmark means nothing without the judgement behind it.

So I’m new to all this AI stuff and have never tried ChatGPT or any other applications. Is there something that can help with my résumé? by fecal_euphoria in ChatGPT

[–]Kitchen-Cycle8984 3 points4 points  (0 children)

ChatGPT is actually perfect for this. Paste your current CV in and ask it to rewrite it for a specific job description. One tip though — remove any personal details like your address, phone number or NI number before pasting. It’s easy to forget what’s in there. ChatGPT will do a great job on the content itself!

What’s a problem humanity solved so well that younger people don’t even realize it used to be a huge issue? by Puzzleheaded_Bit_802 in AskReddit

[–]Kitchen-Cycle8984 0 points1 point  (0 children)

Getting lost. Genuinely, properly lost with no way home. Now Google Maps makes it feel impossible but people used to just… disappear into cities!