📢 Announcing our research paper: Zentry achieves 26% higher accuracy than OpenAI Memory, 91% lower latency, and 90% token savings! Read the paper to learn how we're revolutionizing AI agent memory.
Build a multi-user collaborative chat or task management system with zentry. Each message is attributed to its author, and all messages are stored in a shared project space. zentry makes it easy to track contributions, sort and group messages, and collaborate in real time.
# Example usageagent = CollaborativeAgent(RUN_ID)agent.add_message("user", "alice", "Let's list tasks for the new landing page.")agent.add_message("user", "bob", "I'll own the hero section copy.")agent.add_message("user", "carol", "I'll choose product screenshots.")# Brainstorm with contextprint("\nAssistant reply:\n", agent.brainstorm("What are the current open tasks?"))# Print all messages sorted by timeagent.print_sorted_by_time()# Print all messages grouped by actoragent.print_grouped_by_actor()