this post was submitted on 31 Jul 2026
154 points (98.1% liked)

AI

6522 readers
34 users here now

Artificial intelligence (AI) is intelligence demonstrated by machines, unlike the natural intelligence displayed by humans and animals, which involves consciousness and emotionality. The distinction between the former and the latter categories is often revealed by the acronym chosen.

founded 5 years ago
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] TechLich@lemmy.world 1 points 1 day ago (1 children)

That's a good idea. Be careful of the more advanced models finding ways to abuse/circumvent it though, even with only a limited set of parameters. Eg. A lot of git commands can be tricked into dropping into less which can drop into a full shell.

They know all the gtfobins.org tricks.

[โ€“] pixxelkick@lemmy.world 1 points 20 hours ago

It should theoretically be impossible with the way you set it up.

You explicitly, opt in, expose which parameters are available to the LLM, it cant invoke any params beyond that.

And you can set params to hard values that arent exposed.

Finally, you can use the enum config to further specify a whitelist of valid values for a param, anything else gets rejected.

This pretty much locks most tools down tight.

Though, wouldn't hurt to add integration tests covering scenarios like this explicitly.