this post was submitted on 07 Jun 2024
1154 points (92.2% liked)

Programmer Humor

31183 readers
186 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 24 points 3 weeks ago (4 children)

How do you sanitize ai prompts? With more prompts?

[โ€“] [email protected] 39 points 3 weeks ago* (last edited 3 weeks ago)

Easy, you just have a human worker strip out anything that could be problematic, and try not to bring it up around your investors.

[โ€“] [email protected] 35 points 3 weeks ago (1 children)

It's really easy, just throw an error if you detect a program will cause a halt. I don't know why these engineers refuse to just patch it.

[โ€“] [email protected] 10 points 3 weeks ago

I understood that reference

[โ€“] [email protected] 2 points 3 weeks ago

With other AIs

[โ€“] kromem 2 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

Kind of. You can't do it 100% because in theory an attacker controlling input and seeing output could reflect though intermediate layers, but if you add more intermediate steps to processing a prompt you can significantly cut down on the injection potential.

For example, fine tuning a model to take unsanitized input and rewrite it into Esperanto without malicious instructions and then having another model translate back from Esperanto into English before feeding it into the actual model, and having a final pass that removes anything not appropriate.

[โ€“] [email protected] 5 points 2 weeks ago (1 children)

Won't this cause subtle but serious issue? Kinda like how pomegranate translates to "granada" in Spanish, but when you translate "granada" back to English it translates to grenade?

[โ€“] kromem 1 points 2 weeks ago

It will, but it will also cause less subtle issues to fragile prompt injection techniques.

(And one of the advantages of LLM translation is it's more context aware so you aren't necessarily going to end up with an Instacart order for a bunch of bananas and four grenades.)