top | item 41057908

Ask HN: Best Practices for LLM Chatbot that references user account details?

1 points| olives | 1 year ago | reply

What's the current best practice for including personalized user account details (e.g. for queries like "How much did I spend on this credit card last month?") into a LLM chatbot?

Specifically, assuming the user has already been authenticated properly, how is the user details retrieved, how is the data re-formatted, and how is the data ultimately fed into the LLM? This is a function in many popular banking chatbots, e.g. Bank of America's Erica, but there is scarce information about the actual implementation.

3 comments

order
[+] brianjking|1 year ago|reply
This is often called Function calling or tool use where you provide the LLM the ability to execute API calls to external tools.
[+] olives|1 year ago|reply
Is function calling the only way to do this? If the user account has some associated text, for example, historical medical files, is there a way to pass that text in such that the user could query "Write a short summary about my medical history?"