Milla Jovovich just dropped an open-source AI memory system

The Resident Evil star got tired of AI forgetting things during a game project, so she co-created a local memory system called MemPalace.

Milla Jovovich just dropped an open-source AI memory system
Columbia Pictures

Actress Milla Jovovich and engineer Ben Sigman have released MemPalace, an open-source AI memory system designed to fix information retrieval issues in large language models. The project launched on GitHub on April 6, requiring Python 3.9 or higher to run locally.

I have to admit, "Alice from Resident Evil architects a local Python database" was not on my 2026 bingo card. I have been in love with Jovovich since The Fifth Element, but I never expected her to show up in my GitHub feed pushing open-source code. She came up with the architecture concept after getting frustrated with existing AI tools while working on an unnamed video game project. The AI kept forgetting project details. She decided to build a better way to store conversational history.

Python 3.9 and a Greek mnemonic trick

Local LLMs have a notorious amnesia problem. Standard context windows fill up fast. Once you hit that limit, the AI starts dropping early instructions or hallucinating past conversations. Most developers try to fix this with Retrieval-Augmented Generation, which essentially searches a database for keywords and crams them back into the prompt. It is messy and often leads to the AI losing the thread of complex, multi-step tasks.

MemPalace bypasses this by using a structured, lossless storage method inspired by the ancient Greek "memory palace" technique. Instead of just feeding a massive text file back into the prompt, it organizes data spatially. The agent can retrieve exactly what it needs without losing the plot. This is incredibly cool for anyone running local models. You get a persistent memory state that does not degrade over time or eat up your entire token limit just to remember what happened five minutes ago.

Built for an unannounced game

The gaming connection here is the most interesting part. Jovovich is obviously no stranger to video games. She spent a decade and a half starring as Alice in six different Resident Evil films between 2002 to 2016. Those movies grossed over a billion dollars and basically defined the early era of video game cinema. Moving from acting in game adaptations to developing backend tools for game creation is a massive pivot. Sigman, who is also the CEO of Libre Labs, handled the engineering side to bring Jovovich's architectural concept to life.

We do not know what the unannounced video game project is yet. Game development requires tracking thousands of interconnected variables, lore bibles, and character arcs. Modern studios are increasingly experimenting with AI for dynamic NPC dialogue and procedural quest generation. If a team is using an LLM to manage that much context, a failing memory system would bring production to a halt. An NPC cannot forget a player's previous choices halfway through a questline. MemPalace is a direct response to that bottleneck. It forces the AI to file memories away in specific "rooms" so they can be recalled perfectly later.

The repository is up on GitHub right now. It hit version 3.0.0 almost immediately and has already pulled in thousands of stars. The code is entirely free to use. I am mostly just curious to see what this mysterious game turns out to be, and whether it actually manages to remember my name when I play it.