Storing Micro Knowledge

Hello everyone,

Just a quick question about storing knowledge for a RAG agent. How would you go about storing micro knowledge. Knowledge that is not worth documenting but needs to be recorded because it will be asked again.

Here is my example, last week I was asked,
“Can I use the product in the following way?”
The answer is a straight forward yes/no, but it is not documented anywhere. I would like to add this to the agents knowledge by going to a chat window and type to the agent, something along the lines of
“Remember that you can use the product in this way.”
So that next time they users can ask the agent and no the agent knows.

When it comes to storing this sort of “micro” knowledge is it best to just dump it into a separate table or should I drop it into the Vector store?

If you want to create a memory store for your agent without RAG, then look at this YT video. The agent is prompted to store certain memories into an airtable db, which can be recalled later on.

You can offcourse use any db you want here for storing these memories.