ChatGPT, take the wheel! Letting it control a VM(github.com)
github.com
ChatGPT, take the wheel! Letting it control a VM
https://github.com/greshake/Alice
3 comments
I've been playing a ton with making it simulate ransomware attacks. Going to try this :D
So, I guess this is the inevitable conclusion with LLMs. Connect them to a real terminal and let them act on real-world objects... I honestly don't know whether I like the idea or not, but I guess it's good to have this conversation now while it is only a marginally better version of tldr.
```
grammar = """
Response ::= "Alice\n" (ListOfCmds | SingleNaturalLangResponse)
ListOfCmds ::= (BashCommand\n)+
BashCommand ::= "$ " AnyString
SingleNaturalLangResponse ::= AnyString without $"""
```