I'm planning to use a vectorstore to store embeddings to provide context between API calls. What I'll do is extract embeddings from GPT's response and update the vectorstore with those embeddings. Then after a new prompt, I'll grab vectors from the vectorstore that match the prompt and append those vectors to my new prompt so that GPT will have background to understand the history behind the prompt. My question is: will GPT understand what it means if I include vectors in the prompt as vectors?
for example:
[0.821,-0.126,0.553,...] dragon
[-0.345,0.198,0.721,...] talons
[1.038,0.288,0.099,...] sword
[0.845,-0.273,0.621,...] Sir Gallant
Describe how Sir Gallant fought the dragon and won.
Will GPT understand how the vectors relate to the prompt and respond appropriately?