9 ms·
I'm trying to imagine what a possible use case would be for this. Any simple examples?
by 91Jacob 3y ago
I'm trying to imagine what a possible use case would be for this. Any simple examples?
- kaba0 3y agoAlmost 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.