← Latest papers
💻 computer science

From Organizational Knowledge to AI Agent Memory: Empirical Validation of the SECI Model on the LongMemEval Benchmark

This paper empirically validates the application of the SECI knowledge creation model to AI agent memory by demonstrating that transforming conversational history into structured knowledge significantly outperforms raw verbatim storage in long-term retrieval tasks, primarily by mitigating embedding window truncation that causes raw storage to lose approximately 90% of session content.

Original authors: Dmitrij Żatuchin

Published 2026-07-07
📖 5 min read🧠 Deep dive

Original authors: Dmitrij Żatuchin

Original paper licensed under CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

The Big Question: How Should an AI "Remember"?

Imagine you are talking to a very smart friend (an AI agent) for hours. You discuss your favorite movies, debug a tricky computer problem, and plan a trip. By the end of the conversation, you have a lot of shared history.

But here is the problem: When you start a new conversation the next day, your friend has amnesia. They don't remember what you talked about yesterday.

Engineers have been trying to fix this by building "memory systems" for AI. The paper asks a fundamental design question: When saving this conversation, should we save the entire raw transcript word-for-word, or should we read it first and write down a short, structured summary of the key facts?

The Solution: The "SECI" Recipe

The author, Dmitrij Żatuchin, suggests we borrow a recipe from the world of business management called the SECI Model. Originally, this model explains how companies turn "tacit knowledge" (things people know in their heads but can't easily explain) into "explicit knowledge" (written manuals, databases, and facts).

The author maps these four steps to how an AI should handle memory:

  1. Socialization (The Chat): The conversation happens. This is the "raw" experience.
  2. Externalization (The Summary): This is the crucial step. The AI reads the long chat and extracts the "meat" of the conversation—turning the messy chat into a clean, structured list of facts (e.g., "User likes sci-fi," "User fixed a bug in Python").
  3. Combination (The Filing): Organizing these facts so they don't duplicate and are easy to find later.
  4. Internalization (The Recall): When you start a new chat, the AI loads these facts back into its brain so it can act like it remembers you.

The Experiment: The "Haystack" Test

To see which method works better, the author used a standard test called LongMemEval.

  • The Setup: Imagine a giant library (the "haystack") containing 48 different conversation sessions.
  • The Task: The AI is asked a specific question (e.g., "What was the user's favorite movie in session #12?").
  • The Challenge: The AI has to dig through the library, find the right session, and pull out the answer.

The author tested two main approaches using the exact same search tools:

  1. Raw Storage: Saving the entire conversation text (word-for-word).
  2. SECI Extraction: Saving only the short, structured summary of the conversation.

The Big Discovery: The "Headphone" Problem

The results were surprising, but the reason was mechanical, not magical.

The Finding: The "Summary" (SECI) approach won. It found the right answers 93.9% of the time, while the "Raw Text" approach only found them 92.1% of the time.

The "Why": The Truncation Effect
Here is the secret sauce the paper uncovered. The tool used to search the library (called an "embedding model") has a very small "headphone" or "window." It can only listen to about 256 words at a time.

  • The Raw Problem: A typical conversation in the test was about 10,000 characters long. When the AI tried to "listen" to the raw text, the headphone cut off after the first 1,000 characters. The AI effectively ignored 90% of the conversation, including the answer to the question.
  • The Summary Win: The SECI summary was only about 500 characters. It fit perfectly inside the "headphone." The AI could hear the entire summary, so it found the answer much more easily.

The Analogy:
Imagine you are trying to find a specific sentence in a 500-page book.

  • Raw Storage is like being given a magnifying glass that only lets you see the first 5 pages. If the answer is on page 400, you will never find it.
  • SECI Extraction is like someone reading the whole book and writing a 1-page cheat sheet for you. You can read the whole cheat sheet, so you find the answer instantly.

When Does Raw Text Win?

The paper found one specific situation where the "Raw" method was better: Knowledge Updates.

If the conversation was about changing a fact (e.g., "I used to live in Seattle, but I just moved to Portland"), the exact wording matters. If you summarize it too quickly, you might lose the nuance of when the change happened. In these specific cases, keeping the raw text helped the AI distinguish between the old fact and the new one.

The Bottom Line

The paper concludes that for AI memory, how you format the information matters more than how "smart" the summary is.

You don't necessarily need a super-intelligent AI to write the summary. The author showed that even a simple, rule-based system (just grabbing the first and last sentences) worked better than saving the whole chat, simply because it made the data fit into the search engine's small window.

Key Takeaway: If you are building an AI that needs to remember long conversations, don't just save the raw text. Condense it into a short summary first, or your search tool will be "blind" to most of the content.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →