okay, so i was able to fix that issue i had, but now i have another issue, or lets say a question.
so I am using a backend to fetch some data in this example I am fetching some property data and I want the user to be able to search for a property of their choosing,
so my raw data is properly formatted to include things like, Property address, property price, how many rooms, how many bathrooms etc. etc.
but I am thinking that - and maybe this is a limitation, but instead of having so many search criterias in my database, if I were to only limit the results by lets say number of rooms and number of bathrooms. - (so that the context is not becoming massive by fetching all data).
-- but how would one go and have the model filter the raw data it received.
like example; the raw data contains 20 properties that matches the users input of "show me rental properties that have at least 2 bedrooms and 3 bathrooms" which is passed back to the model.
but then how would the model respond when the user says
" what about properties that include parking (here the model should look at the raw data it received, and only talk about properties with parking) "
or if the user asks, does this property have any additional bills ? etc.
- so how can I pass the raw results to the Assistant, but not read it to the user, and get it to make its own conversation based on it ?