Hacker News new | ask | show | jobs
by 91Jacob 1137 days ago
I'm trying to imagine what a possible use case would be for this. Any simple examples?
1 comments

Almost any integration with computer systems would need some structured format, let’s say you want to write an intelligent file manager where you could prompt to “find a file that ends in Final”, and with enough instructions the LLM might give you back something like:

  {
    “command”: “find”,
    “param”: { “type”: “regex”,     “value”: “[^.]*Final\.[^.]*” }
  }

which you can actually interpret and execute for the user. But I’m absolutely a novice at anything ML, so take my comments with a grain of salts.