|
|
|
|
|
by DubiousPusher
744 days ago
|
|
Pretty good. Despite my high scepticism of the technology I have spent the last year working with LLMs myself. I would add a few things. The LLM is like another user. And it can surprise you just like a user can. All the things you've done over the years to sanitize user input apply to LLM responses. There is power beyond the conversational aspects of LLMs. Always ask, do you need to pass the actual text back to your user or can you leverage the LLM and constrain what you return? LLMs are the best tool we've ever had for understanding user intent. They obsolete the hierarchies of decision trees and spaghetti logic we've written for years to classify user input into discrete tasks (realizing this and throwing away so much code has been the joy of the last year of my work). Being concise is key and these things suck at it. If you leave a user alone with the LLM, some users will break it. No matter what you do. |
|