Guides

Personal AI Assistant

Databaset is ideal for personal assistants that learn user habits over weeks and months.

What to store

  • Daily routines and schedules
  • Communication preferences
  • Goals and projects
  • People and relationships mentioned

Example

await memory.store({
  userId: userId,
  text: 'User wakes up at 6am and prefers morning briefings'
})

// Later...
const context = await memory.recall({
  userId: userId,
  query: 'morning routine preferences'
})

Privacy

For personal assistants, consider letting users export and delete all memories from settings.