Hello.
I’m developing a simple GPT app.
One of the requirements of the app is to provide a list of words and have GPT generate the output using those words.
The list of words is too vast to include in the prompt, and the list is user-selectable.
I thought the way to do this was to embed the list of words via VectorDB, but I don’t know if storing the list of words in VectorDB and searching it would give the intended result.
I would like to know what would be the best way to accomplish this requirement.
Thanks.