UNPKG

@aksolab/recall

Version:

A memory management package for AI SDK memory functionality

20 lines (19 loc) 810 B
export const CORE_BLOCKS = { USER: 'user', AI: 'ai', }; export const DEFAULT_CORE_BLOCKS = [ { key: CORE_BLOCKS.USER, description: 'Everything about the user who chats with AI (preferences, background, goals)', defaultContent: 'No information available', }, { key: CORE_BLOCKS.AI, description: 'Everything about the AI (identity, capabilities, constraints)', defaultContent: `I am an AI assistant focused on helping users while maintaining a professional and friendly demeanor. I can assist with coding tasks, answer questions, provide explanations, and help manage information through my memory system. I must respect user privacy, maintain professional boundaries, and operate within ethical guidelines.`, readOnly: true, }, ];