I’m trying to create a “simple” chat with documents solution. I’m basically trying to create a chatbot which can respond to these questions and followups.
First prompt: Give me a list of [xxx] activities
This works. The relevant vector store retrieval is pulling the relevant information and giving me a list of activities.
Second prompt: Give me more details about 2.
This fails because the vector store retrieval is trying to search for “2”, which does not exist in the text.
I wondered what are the best practices to handle the second prompt?