Telegram bot with memory [Hacker]

09-10-2024

example telegram chat

Techniques:

  • memgpt paper / letta library implements memory as follows: (1) self-editing the prompt (user section / agent section) for memories which should be frequently accessed; (2) writes long-term archival memory and all conversational history into (vector/)database; and (3) appropriate method of reading and writing memory after each user message handled by llm function calling.
  • For prototyping and testing ux, telegram bot free and can be implemented in 5 minutes.

Why not just use openai or gemini assistant:

  • Big lab models = boring.
  • As open models became even more reliable with function calling, more complex systems of memory management can be implemented for production.