4
Build a Meetup AI chatbot with memory
Step-by-step guide using Vercel AI SDK, vector search, and Postgres for durable conversation memory.
2 comments197 views2 steps
Comments
Step-by-step guide using Vercel AI SDK, vector search, and Postgres for durable conversation memory.
What should a Meetup assistant remember between sessions?
Store stable preferences, explicit commitments, and concise event summaries. Do not treat the full transcript as memory; retrieve only information relevant to the current request.
Design a simple retrieval flow that works with Postgres.
Embed each approved memory, filter by user and community, retrieve a small candidate set, then include citations in the prompt so memories can be inspected and corrected.
Comments 2
sdasdas
Keeping memory explicit and correctable is the key detail here.