Let’s say we’re trying to build a recommendation system for users visiting a grocery store. We have all items in our grocery store in a database(total number of items in the store won’t be more than 500).
I want to build a chatbot that could help visiting customers select out of these items based on their queries. What would be the best approach for this use case?
Using promt engineering to pass the entire items list on every query to OpenAI
using a fine-tuning model
using SQL agent to fetch data
or some other way
I’m very new at OpenAI, so any help would be appreciated. TIA
I need to make pasta today, what items would I require
Basically, the chat assistant should be able to look up the items of my store and answer any questions related to those. Should be able to handle simple questions for now.
Using query generation is probably your best bet in general (although I’m not sure about SQL generation by user-facing bots. Sounds like an express train to Pwn-Town unless you’re a super seasoned db administrator.)
You could also use RAG to store topical example queries to improve your first time hit rate
I’m a bit skeptical with SQL query generation based on user inputs.
What is you opinion about passing the entire list of items in the prompt itself and asking the model to answer based on that?
How would that be compared to the SQL approach in terms of cost/speed efficiency?
It’s probably doable, but will likely eat into your API costs. You may run into trouble if you have lots of similar items, but it depends on what data you’re working with.
That said, you can just try this approach with a custom GPT or assistant, and see how far it gets you. Pretty low risk prototype.