Published
-
AI/LLM/Ontology/Organizational Memory
1. Executive Summary
Rather than being a “knowledgeable entity,” modern LLMs are probabilistic pattern generators that learn from large volumes of language, code, images, and behavior logs, and become operational systems only by connecting external tools, business data, memory, authority, auditing, and feedback loops. Therefore, the essence of using AI lies not only in “selecting smart models,” but also in information design that converts organizational reality into a form that can be manipulated by models. The conclusions of this report are as follows.
- The history of AI can be understood in terms of symbolic processing, statistical machine learning, deep learning, Transformer/LLM, and agentization. The current turning point is that models are moving away from the intelligence of a standalone model to an operational system where models read and write the external environment.
- The essence of LLM is to reconstruct the relationships between elements in a context in a high-dimensional vector space, centering on the self-attention mechanism, and generate the next possible output. This allows language, code, and reasoning-like processing to be combined into one interface.
- Differences from humans should be found not only in the abstract theory of the presence or absence of consciousness, but also in physicality, purpose formation, continuous experience, responsibility, value judgment, grounding in field constraints, and social trust.
- Mere documentation is insufficient for information that can be put into practical use by AI. Business objects, attributes, relationships, states, history, decisions, permissions, exceptions, and implicit criteria need to be structured.
- Symbol grounding is not a matter of “making sense to the LLM” but a design problem that connects symbols within an organization to observations, actions, results, responsibilities, and verifiable data.
- Palantir’s ontology should be viewed as an operational ontology that integrates data, logic, action, and security, as well as traditional RDF/OWL semantics.
- Graphiti’s time-aware knowledge graph is a highly relevant direction for dealing with dynamic memory, history, relationships, and evidence. However, weak extraction quality, schema design, operational load, authority, and evaluation design result in plausible but dangerous organizational memory.
- The direction that Anthropic’s public information appears to be is towards long context, advanced agents, business application integration, MCP, skills, sub-agents, audit/authorization/corporate implementation. This is an estimate based on official announcements, as a detailed future roadmap has not been made public.
- MCP is useful as a standardization layer to connect external data, tools, prompts, and resources to AI. However, it does not automatically solve business semantics, authority design, data quality, and normalization of organizational knowledge. This report crosses the literature on AI research history, LLM research, knowledge representation, cognitive science, organizational knowledge theory, and agent-based literature. Although not an exhaustive systematic review, we will read the Dartmouth Proposal, Newell and Simon, Rumelhart et al., Vaswani et al., Brown et al., Ouyang et al., Bai et al., Harnad, Gruber, Berners-Lee et al., Nonaka, Graphiti/Zep, Palantir, Anthropic, and MCP specifications in a way that connects them to design decisions for practical implementation.
flowchart LR
A["AI history"] --> B["LLM structure"]
B --> C["Symbol grounding"]
C --> D["Ontology"]
D --> E["Memory"]
E --> F["MCP connections"]
F --> G["Evaluation and audit"]
2. How should we understand the history of AI?
The history of AI is not simply a matter of technological progress that approaches humans, but rather a shift in paradigms regarding how to implement intelligence into machines. Early AI developed around inference, exploration, rules, and symbolic manipulation. The view that human intelligence can be broken down into explicit symbols and rules became the basis for expert systems and classical reasoning systems. However, they were vulnerable to real-world ambiguity, exceptions, knowledge acquisition costs, and environmental changes. The starting point for this period was the 1955 Dartmouth Proposal by McCarthy, Minsky, Rochester, and Shannon. The proposal posited the research hypothesis that if various aspects of learning and intelligence could be precisely described, they could be simulated by machines. Newell and Simon (1976) presented the physical symbol system hypothesis, viewing intelligence as a computational process of symbols and exploration. This view gave strong theoretical support to systems that have knowledge as explicit rules. Source note: Dartmouth Proposal presented AI research as a plan to simulate “learning” and “intelligence” with machines. For Newell and Simon’s view of symbolic processing, see Computer Science as Empirical Inquiry. After that, statistical machine learning moved toward learning regularities from data instead of writing rules by hand. Furthermore, deep learning incorporates the feature design itself into learning, making great progress in image recognition, speech recognition, and natural language processing. The error backpropagation method of Rumelhart, Hinton, and Williams (1986) was decisive for the reconstruction of neural networks. LeCun, Bengio, and Hinton (2015) organized deep learning as a method for learning representations themselves in a hierarchical manner. The progress made in the 2010s is not simply due to an increase in computational resources, but the simultaneous maturation of data, GPUs, optimization, regularization, network structures, and benchmarks. Source note: Rumelhart, Hinton, and Williams (1986) for error backpropagation, LeCun, Bengio, and Hinton (2015) for an overview of deep learning. The latter organizes deep learning as a method for learning multiple levels of representation. The 2017 Transformer demonstrated a design that does not rely on recursion or convolution to process sequence data, but instead uses an attention mechanism to directly handle relationships between elements in context. This became the central foundation of the modern LLM. After GPT-3, large-scale pre-training and few-shot/zero-shot use of prompts became widespread, and the focus shifted from “creating an individual model for each task” to “giving context to a general-purpose model and letting it solve.” Source note: The original Transformer paper Attention Is All You Need describes Transformer as “based solely on attention mechanisms”. GPT-3’s Language Models are Few-Shot Learners reported that task-independent few-shot performance improves with scaling. The focus in practice after 2024 will shift from a single model to agents, tool usage, long context, external storage, permissions, auditing, and business application integration. This means that AI is moving from “software that answers” to “software that acts within a work environment.”
timeline
title AI paradigm shifts
1950s : Symbolic AI
1970s : Symbol manipulation
1980s : Neural network revival
2010s : Deep learning
2017 : Transformer
2020s : Foundation models
2024+ : Agent connections
3. Essence of LLM principle and structure
There are five key points to understand when understanding LLM: In the context of LLM research, it is necessary to read not only the 2017 Transformer, but also the discussions of BERT, GPT-3, InstructGPT, Constitutional AI, and Foundation Models. BERT (Devlin et al., 2018) acquires bidirectional context through pre-training, and GPT-3 (Brown et al., 2020) demonstrated that large-scale autoregressive models exhibit few-shot performance. Bommasani et al. (2021) called these foundation models and organized them as fundamental technologies that include not only capabilities but also bias, evaluation, and legal and social risks. Source memo: BERT is Devlin et al. (2018), GPT-3 is Brown et al. (2020), foundation model conceptual organization is Bommasani et al. (2021). It is cited here as a history of research that moved from models for individual tasks to basic models.
3.1 Tokenization
Rather than understanding strings literally, LLM splits text into tokens and treats each token as a vector of numbers. The meaning here is not an empirical meaning that humans have, but a distributed expression that reflects co-occurrence, context, syntax, usage, and inference patterns within the learning data.
3.2 Self-care
At the heart of Transformer is self-attention. Self-attention is a mechanism by which each element in the input learns which and how many other elements it should refer to. This makes it easier to handle long-range dependencies, instructions, references, code structure, and contextual constraints. The contribution of Vaswani et al. (2017) is that they showed that sequence transformation can be constructed using only the attention mechanism without using RNN or CNN. In LLM, the multi-headed attention in each layer captures different relationships, and the feedforward layer transforms the representation. This is the technical basis for behavior that appears to be “semantic understanding”. However, it is dangerous to treat attention weights as a human-readable explanation, and the relationship between attention and explanation is treated with caution in interpretability research. Source note: Vaswani et al. (2017) states that while traditional series transformation models were based on recurrent / convolutional networks, Transformer discards recurrence and convolution. This report’s “self-attention-centered” explanation is based on this design difference.
3.3 Pretraining and scaling
LLM uses large amounts of text and code to learn to predict the next or hidden token. The GPT-3 paper showed that increasing model size boosts task-independent few-shot performance. On the other hand, it also suffers from biases derived from the learning corpus, outdated knowledge, misinformation, evaluation contamination, and instability of inferences.
3.4 Direction following and alignment
The basic model is difficult to use for business as it is. Additional training, including supervised fine-tuning, RLHF/RLAIF, and constitutional AI, will be used to follow human instructions, suppress dangerous output, and provide conversational and useful responses. Ouyang et al. (2022) demonstrated InstructGPT, which allows GPT-3 to follow instructions using human feedback. Bai et al.’s (2022) Constitutional AI does not rely solely on human labels, but instead shows a direction toward reducing harm through AI feedback based on clearly stated principles. In practice, these methods do not mean that the model has ethics built into it. It merely improves the output trends; permissions, audits, approvals, logs, and evaluations remain on the system side. Source note: Ouyang et al. (2022) argues that simply increasing the size of the model does not guarantee that it will follow the user’s intentions, and shows how to fine-tune it using human feedback. Bai et al. (2022) calls AI feedback based on “rules or principles” Constitutional AI.
3.5 “Inferable compression” instead of inference
The output of an LLM is not a proof of the logic engine. In many cases, the result of compressing large numbers of language patterns is to produce behavior that looks like inference. Therefore, in practice, rather than relying on LLM reasoning as is, it is necessary to make it verifiable by combining it with external data, calculations, rules, audit logs, and approval flows. Bender et al. (2021) criticized the environmental burden of large-scale language models, data-derived bias, and the danger of imitating only the form. On the other hand, the results after Brown et al. (2020) showed the versatility of statistical prediction alone, which cannot be underestimated. The two are not contradictory. Although it cannot be concluded that LLM has the same semantic understanding as humans, it has high practical value when combined with the external environment. Source note: Bender et al. (2021) for critical perspective, Brown et al. (2020) for demonstration of competency. In this report, we read these two as “LLM is a technology that should be avoided both underestimation and overestimation.”
flowchart TD
T["Input"] --> Tok["Tokenization"]
Tok --> Attn["Context processing"]
Attn --> Out["Next-token generation"]
Out --> Align["Instruction tuning"]
Align --> Use["Assisted action"]
4. Where should we find the difference with humans?
If we limit the difference between LLMs and humans to “humans have minds, and AIs do not,” it will not be of much use in practical design. The important differences in practice are as follows. There is a long debate in philosophy and cognitive science about this issue. Searle’s (1980) Chinese room argued that symbolic manipulation alone does not lead to semantic understanding. Dreyfus criticized classical AI for underestimating physicality, situationality, mastery, and being-in-the-world. Clark and Chalmers (1998) discussed the possibility that cognition extends beyond the brain to the external environment. Lake et al. (2017) summarized that human-like learning requires generalization from a small number of cases, causal models, constructivity, and intuitive psychology and physics. Source note: See Searle (1980) for the difference between symbol manipulation and understanding, Clark and Chalmers (1998) for how to grasp cognition including the external environment, and Lake et al. (2017) for the requirements for human-like learning.
| Perspective | Human | LLM |
|---|---|---|
| Embodiment | Experiencing sensation, movement, fatigue, danger, and social sanctions | Basically, text, images, and tool results are treated as input |
| Purpose | Forming and modifying the purpose of oneself and the organization | Acting to optimize the given purpose |
| Memory | Associated with sequential experiences, emotions, and responsibilities | Depends on sessions, external memory, and retrieval |
| Meaning | Connected to actions, experiences, social relationships, and values | Distributedly expressed from usage and relationships within data |
| Responsibility | Responsible for judgment | Not the responsible entity, but a component of responsible operation |
| Tacit knowledge | Having embodied skills, contextual judgment, atmosphere, and intuition | Tacit knowledge that is not observed, recorded, and fed back cannot be accessed |
| Rather than viewing AI as a replacement for humans, it is important to design it as a device that augments human judgment, turns it into explicit knowledge, and speeds up execution and verification. |
flowchart LR
H["Human"] --> HC["Body, purpose, responsibility"]
L["LLM"] --> LC["Representation, reasoning, tools"]
HC --> G["Understand the gap"]
LC --> G
G --> D["Design and audit"]
5. Information that can be input to AI in practice
The success or failure of AI utilization depends more on “what to make available for input” than “which model to use.” Information useful for practical input can be organized in the following hierarchy. This chapter is at the intersection of RAGs, knowledge graphs, operational data modeling, and workflow management. Lewis et al. (2020)‘s RAG and Guu et al. (2020)‘s REALM pointed toward connecting searched external knowledge to generation, rather than keeping all knowledge within the model. In practice, if the search target remains a mere document corpus, handling of business status, authority, history, and exceptions becomes weak. Source note: RAG is Lewis et al. (2020), REALM is Guu et al. (2020). Here, it is cited to show the design consequence that search expansion needs to include business objects, states, and actions, not just “document search.”
5.1 Layer 1: Documents
Regulations, manuals, minutes, design documents, customer correspondence history, codes, FAQs, etc. This is the easiest to implement, but documents alone tend to make it unclear what is currently valid, who approved it, what are the exceptions, and what the actual business status is.
5.2 Layer 2: Structured Data
Table data such as customers, opportunities, contracts, inventory, employees, projects, sales, obstacles, inquiries, etc. LLM should not be used alone, but in combination with SQL, API, BI, and data quality management.
5.3 Third layer: Business objects
Clarify business nouns such as “customer,” “project,” “billing,” “product,” “failure,” and “measure,” and give them attributes, relationships, status, life cycle, and authority. This is the entrance to ontology.
5.4 Layer 4: Actions and Decisions
Business actions such as approval, rejection, order placement, price change, customer contact, deployment, and troubleshooting. For AI to enter into practice, it is necessary not only to read, but also to define what it can do and under what conditions.
5.5 Layer 5: Feedback and Results
Record which results were produced by AI or human decisions. Without this, AI utilization will remain as a one-off efficiency improvement and will not lead to organizational learning.
flowchart TD
D["Documents and data"] --> AI["AI input layer"]
BO["Business objects"] --> AI
AI --> W["Judgment and proposals"]
W --> L["Decision logs"]
L --> F["Outcome feedback"]
F --> AI
6. Symbol grounding method
The symbol grounding problem is a problem in which if symbols are closed only by the relationships between them, what they mean cannot be determined within the system. Harnad argued that mere linguistic input and output is insufficient for grounding, and sensorimotor connections are needed. Source note: Harnad (1990)‘s Symbol Grounding Problem is the basis of this chapter. In this report, we reinterpret it not as a robot body itself, but as a connection to work objects, actions, results, and responsibilities. Symbolic grounding in the LLM era is not a retelling of the classic “symbolic AI versus connectionism”. LLM can powerfully handle relationships within the language through distributed expressions, but the problem in business is connecting to individual objects such as “this customer,” “this contract,” “this failure,” and “this approval.” Therefore, grounding is not a complete solution to philosophical meaning understanding, but is designed as an information architecture that closes reference, action, result, and responsibility. Symbolic grounding in practical AI does not necessarily mean having a robot body. Within an organization, making connections is a practical grounding.
- Connection of symbols and objects: “Customer A”, “Project B”, and “Risk C” refer to unique objects in the actual data.
- Connection of symbols and states: Statuses such as “Not supported”, “Approved”, “Difficult”, and “Important customer” have judgment rules and trails.
- Connection of symbols and actions: “Approve,” “Send,” and “Place an order” are connected to actual system operations.
- Connection of symbols and results: Post-action sales, quality, delays, customer satisfaction, and risk reduction are recorded.
- Connection of symbol and responsibility: Who made the decision, who approved it, and with what authority it was carried out remains. In this perspective, ontology is not a dictionary but a grounding layer that operationalizes organizational reality.
flowchart LR
S["Symbols<br/>Customer A, incident B, approval C"] --> O["Business objects"]
O --> St["State<br/>Open, approved, in incident"]
St --> Ac["Actions<br/>Send, approve, recover"]
Ac --> Re["Outcomes<br/>Revenue, quality, risk"]
Re --> Au["Accountability and audit"]
Au --> S
7. How to understand ontology
Ontology has at least three meanings. Gruber (1993) defined ontology as an explicit specification of conceptualization. Formal ontology after Guarino (1998) emphasized not only the classification of concepts but also basic distinctions such as identity, dependence, part-whole relationships, roles, and events. Berners-Lee, Hendler, and Lassila’s (2001) Semantic Web was a vision for connecting information on the Web into semantic structures that can be processed by machines. These lineages come back to the question of “how to define what LLM touches” in modern business AI. Source note: The definition that treats ontologies as “explicit specifications” is Gruber (1993), and the Semantic Web initiative is Berners-Lee, Hendler, and Lassila (2001). This section distinguishes between genealogy as a knowledge expression and its modern usage as a business operations layer.
- Philosophical Ontology: Asking what exists.
- Ontology as knowledge representation: Define concepts, relationships, and constraints in a machine-readable manner.
- Ontology as business operations: Integrates business objects, states, actions, authorities, and decisions. What is needed for AI utilization is an ontology that includes the third one. Simply defining a vocabulary in RDF/OWL will not move the business unless there are practical actions, authorities, audits, and feedback. Palantir Foundry’s Ontology strongly emphasizes this point. Palantir describes Ontology as an operational layer that sits on top of datasets, virtual tables, and models and connects to real-world objects such as equipment, products, orders, and financial transactions. It also states that it includes not only semantic elements but also kinetic elements such as actions, functions, and dynamic security. Source note: Palantir’s Why create an Ontology? describes Ontology as the “common language” of an organization, emphasizing the capture and writeback of decision results. Specific items for Action types, Functions, and Permissions can be found in the navigation and related pages of the same document. This idea is very important in the LLM era. LLM can receive a variety of requests using natural language, but in order to safely reflect those requests in practice, it is necessary to clarify “which object, in what state, with whose authority, and which actions are permitted.”
flowchart TD
BO["Business objects"] --> Rel["Relations and state"]
BO --> Act["Permitted actions"]
Act --> Pol["Permissions and approvals"]
Pol --> Aud["Audit logs"]
Aud --> FB["Outcome learning"]
8. Pros and cons of Graphiti’s approach
Graphiti is a time-aware context graph engine at the core of Zep’s context infrastructure. The official README describes it as handling changes in facts over time, provenance, episodes, custom types, and hybrid search, rather than a static knowledge graph. The Zep paper presents an approach to dynamically integrate conversational and business data through Graphiti and maintain historical relationships. Source note: The Graphiti README describes Graphiti as a framework for temporal context graphs for AI agents, dealing with factual variation, provenance, and prescribed/learned ontology. The Zep paper is Rasmussen et al. (2025). An easy way to evaluate Graphiti is to compare it with the limits of RAG. RAG is a powerful pattern that searches for related documents and passes them on to generation, but the chronology of document fragments, fact updates, relationships between people, cases, and decisions, and the handling of contradictory trails tend to be implementation-dependent. Zep/Graphiti (Rasmussen et al., 2025) presents a design that compensates for this weakness by treating agent memory as a timed knowledge graph. Source note: Zep論文 argues that existing RAGs tend to be limited to static document retrieval, and positions Graphiti as a temporally-aware knowledge graph engine. The Graphiti README also explains the design of managing old facts with a validity window without deleting them.
8.1 Points that can be evaluated
Graphiti’s direction is highly relevant for the following reasons.
- Managing time: Organizational knowledge is not only about what is currently correct, but also about when it was correct and when it was overwritten.
- Leave provenance: Agent memory cannot withstand audits without being able to go back to the underlying conversation, document, JSON, or event.
- Handling relationships: Flat vector searches have difficulty handling structures of people, issues, decisions, exceptions, and dependencies.
- Assuming dynamic updates: In business, customer conditions, specifications, and decision criteria change, so batch rebuilding alone is slow.
- Compatibility with MCP: Graphiti MCP Server allows it to be used as a storage tool from MCP clients such as Claude Desktop and Cursor.
8.2 Points to note
However, implementing Graphiti does not automatically improve organizational memory.
- Extraction quality issue: LLM extracts incorrect entities and relationships from conversations. If incorrect relationships are memorized, they contaminate subsequent judgments.
- Ontology design issues: If the balance between prescribed ontology and learned ontology is incorrect, the graph will become chaotic.
- Authority issues: You must control who can see the knowledge gained from whose conversations.
- The problem of forgetting: Designing historical information rather than deleting old information is effective, but there is a risk that old information will be mixed in when searching.
- Evaluation issue: Your company needs to design a benchmark to measure whether memory really contributes to work results.
8.3 Conclusion
Graphiti is promising as an external memory for LLM. However, rather than creating a company-wide knowledge base from the beginning, it is preferable to have a PoC with a limited scope. For example, you should start with areas where time change and relationships are important, such as customer service history, troubleshooting, technical research, design decisions, and sales proposals.
flowchart LR
Src["Conversations, documents, events"] --> Ext["Relation extraction"]
Ext --> TKG["Temporal KG"]
TKG --> Ctx["Context assembly"]
TKG --> Aud["Sources and timestamps"]
Ctx --> Agent["LLM Agent"]
Aud --> Rev["Human review"]
9. Strategies for utilizing tacit knowledge in organizations
Tacit knowledge is not undocumented knowledge, but includes experience, embodied skills, situational judgment, relationships, and context-dependent intuition. Nonaka’s SECI model places the mutual transformation of tacit and explicit knowledge at the center of organizational knowledge creation. Polanyi’s (1966) theory of tacit knowledge posed the problem that “people know more than they can say.” Nonaka (1994) and Nonaka and Takeuchi (1995) organized the conversion of tacit and explicit knowledge as a cycle of communalization, externalization, connection, and internalization. Brown and Duguid (1991) showed that learning and innovation occur within communities of practice, not just formal manuals. When introducing AI, this lineage should not be reduced to a matter of “transforming all tacit knowledge into text”. Source note: The basis of tacit knowledge is Polanyi, The Tacit Dimension, and the source of the SECI model is Nonaka (1994) and Nonaka and Takeuchi (1995). The community of practice perspective is Brown and Duguid (1991). Utilizing tacit knowledge in the AI era does not mean completely converting tacit knowledge into explicit knowledge. Rather, it is about capturing situations where tacit knowledge is demonstrated and connecting it to surrounding information in a reusable form. The practical measures are as follows.
- Leave a decision log: Record not only “what was decided,” but also “why,” “what were the alternatives,” and “which constraints were effective.”
- Collect the thought process of experts: Record review comments, troubleshooting, negotiation preparation, and design decisions as short audio/memo/conversation logs.
- Make it case-based: Instead of an abstract manual, accumulate examples, exceptions, failures, recoveries, and customer responses.
- Connect to ontology: Link tacit knowledge to business objects such as “customers,” “projects,” “systems,” “risks,” and “judgment criteria.”
- Support externalization with AI: Have LLM extract points of contention, decision criteria, unconfirmed matters, and reusable procedures from conversations.
- Human Approval: Externalization of tacit knowledge is easily misinterpreted. A review by an expert or a responsible person is required.
- Create a space for re-internalization: Humans will re-embodi themselves not only through reading documents created by AI, but also through pair work, reviews, role-plays, and reflections.
flowchart LR
Tacit["Tacit knowledge<br/>Experience, intuition, situational judgment"] --> Capture["Situation capture<br/>Conversations, reviews, incidents"]
Capture --> Externalize["Externalization<br/>Issues, criteria, cases"]
Externalize --> Structure["Structuring<br/>Objects, relations, state"]
Structure --> Reuse["Reuse<br/>Search, suggestions, training"]
Reuse --> Internalize["Re-internalization<br/>Practice, review, training"]
Internalize --> Tacit
10. Connection with the concept of Palantir
Palantir Foundry Ontology is an important reference point for business system design in the AI era. Palantir’s documentation describes Ontology as an organization’s operational layer, connecting data to real-world objects and integrating decision-making, action, and security. Source note: See Palantir Ontology overview and Why create an Ontology?. The latter calls Ontology the “digital twin” of an organization and explains that it turns decisions into data through decision capture, writeback, and action types. Palantir’s feature is that it does not limit ontology to a static knowledge representation, but treats it as an operational layer that integrates business objects, authorities, actions, and decision-making. This is consistent with the Semantic Web and OWL traditions, but the emphasis is different. While RDF/OWL-based ontologies emphasize “expression of concepts and relationships,” Foundry Ontology is presented as “a layer for safely manipulating real business objects.” This idea is connected to LLM utilization as follows.
| Concept of Palantir | Meaning in LLM/AI practice |
|---|---|
| Object / Link | Business nouns and relationships that LLM should refer to |
| Action | Business operations that LLM can suggest or perform |
| Function / Logic | Rules, calculations, models, workflows |
| Dynamic Security | Permission control for each user and AI agent |
| Decision capture | Judgment, approval, and record of results |
| Digital twin of organization | Business world model shared by AI and humans |
| The strength of Palantir-type thinking is that it connects AI to changes in the state of the business world, rather than confining it to a simple chat UI. On the other hand, implementation requires large design and integration costs. If your company adopts a similar philosophy, you should start with a “small operational ontology” for specific workflows, rather than creating a huge company-wide ontology from the beginning. |
flowchart TD
Data["Data assets"] --> Ont["Ontology"]
Logic["Functions and models"] --> Ont
Ont --> Obj["Objects and relations"]
Obj --> Act["Actions"]
Act --> Ops["Business outcomes"]
Ops --> Ont
11. How do you read Anthropic’s future roadmap?
Anthropic has not comprehensively released a detailed future roadmap. Therefore, we will summarize the direction that can be seen from the official announcement as of May 6, 2026. This chapter is not a quotation from the official roadmap, but rather an extrapolation from Anthropic’s published products, specifications, and announcements. The November 2024 MCP announcement, Claude Code’s MCP integration, Subagents, Skills, Opus 4.6’s 1M context beta and agent teams, Labs, and agent templates for finance are pointing in the same direction. In other words, Anthropic is shifting its focus from “one-shot LLM” to “an agent platform that breaks down long-running tasks, uses external tools, and executes them under the authority of the organization.” Source note: MCP announcement is Anthropic, Introducing the Model Context Protocol. Opus 4.6’s 1M token context, context compaction, and agent teams are based on Claude Opus 4.6. The “direction” here is not an official roadmap, but an estimate from published features.
11.1 Direction seen from published information
- Agentization: Claude Code, Cowork, Managed Agents, financial agent templates, etc. are moving towards doing work rather than answers.
- Business application integration: Increasing connectivity with Excel, PowerPoint, Word, Outlook, financial data providers, and corporate systems.
- MCP-centric connectivity strategy: Positioning MCP as the standard for connecting AI and external data tools, making it available through APIs, Claude Code, and Claude.ai.
- Long-term/long-context work: Opus 4.6 shows 1M token context beta, compaction, long-running tasks, and agent teams.
- Corporate Controls: Strengthening permissions, authentication, audit logs, compliance, cloud infrastructure, and partner ecosystem.
- Expansion of computing resources: We are expanding our learning and inference capabilities through additional collaboration with AWS.
- Separation of experimentation and commercialization: This shows a system in which research previews, experimental functions, and productization are promoted separately through Labs.
11.2 Implementation reading
Anthropic’s direction has shifted from competition in the performance of individual models to a business agent platform, tool connectivity, organizational implementation, and auditable autonomous work. MCP, Skills, Subagents, long context, office collaboration, and Claude Code/Cowork are heading in the same direction. However, you should avoid making a definitive statement that “Anthropic will definitely do this in the future.” If used as a roadmap, it would be appropriate to treat it as a “hypothesis for practical implementation based on published functions”.
flowchart LR
MCP["MCP"] --> Conn["Connections"]
Skills["Skills"] --> Work["Repeatable procedures"]
Sub["Subagents"] --> Team["Distributed execution"]
Conn --> Platform["Agent platform"]
Work --> Platform
Team --> Platform
12. To what extent can MCP be used?
MCP is a standard protocol for connecting AI applications and external systems. Anthropic describes MCP as a standard for connecting data sources and tools to AI. The official specifications cover Tools, Resources, Prompts, Sampling, Roots, Elicitation, Authorization, etc. Source note: Anthropic’s MCP announcement describes MCP as an “open standard” for connecting AI assistants and data sources. MCP’s official What is MCP? is also described as a standard for connecting AI applications to external systems. MCP is positioned as a common interface for connections, rather than having universal semantics like HTTP or SQL. In the official specifications, server features such as Resources, Prompts, and Tools, and client features such as Sampling and Roots are defined. The specifications for 2025 and beyond also include authorization and security considerations. In practice, rather than creating an MCP server, the essence is deciding which operations to make public, what privileges to execute them, and which logs to leave. Source note: The basic function of MCP server is Understanding MCP servers. The same page explains Tools, Resources, and Prompts as three building blocks, with tools being operations that models call, resources being context information, and prompts being templates.
12.1 What you can do with MCP
- Tool execution: Expose API calls, DB searches, calculations, file operations, and business system operations to AI.
- Resource provision: Expose files, DBs, APIs, documents, etc. as contexts with URIs.
- Prompt templates: Provide reusable instruction templates that follow business workflows.
- User confirmation: Depending on implementation, confirmation UI or approval for dangerous operations can be included.
- Existing system integration: Easy to standardize connections such as Slack, GitHub, Google Drive, DB, internal API, etc.
- Coordination with memory tools like Graphiti: Memory/knowledge graphs hosted on the MCP server can be used by multiple AI clients.
12.2 What MCP alone cannot do
- Automation of semantic design: MCP is a protocol and does not automatically create business ontology.
- Data Quality Assurance: Old data, inconsistencies, duplication, and incorrect entries require separate management.
- Responsibility design: Who gives approval and who is responsible is determined by business design outside the MCP.
- Complete resolution of authority/auditing: Security considerations are included in the specifications, but implementation and operation are important.
- Symbol grounding itself: MCP provides a connection path, but a separate design is required to associate symbols with real objects, actions, and results.
12.3 Recommended architecture
In practice, it is best to position MCP as follows.
LLM / Agent
↓
MCP Client
↓
MCP Servers
├─ Document / Search Server
├─ Database / BI Server
├─ Workflow / Ticket / CRM Server
├─ Graphiti / Memory Server
└─ Approval / Audit Server
↓
Operational Ontology
├─ Objects
├─ Relations
├─ States
├─ Actions
├─ Permissions
└─ Feedback
MCP is a “standard for connectivity” and Operational Ontology is “a layer that defines the meaning and actionability of connected things.” It is important to design these two separately.
flowchart TD
Agent["LLM Agent"] --> Client["MCP Client"]
Client --> Surface["Tools / Resources"]
Surface --> Data["APIs and documents"]
Data --> Ont["Ontology"]
Ont --> Aud["Audit and approval"]
13. Recommended policy for practical implementation
13.1 What to make first
The first thing that should be created is not a company-wide AI infrastructure, but a limited area “business memory project.” Introductory research should not compare RAG alone, knowledge graph alone, or agent alone, but should be evaluated based on their contribution to business results. For example, in the case of technical research, we measure the “rediscovery rate of past judgments,” “response rate with citations,” “review revision rate,” and “contamination rate of old information.” When dealing with customers, measure “response preparation time,” “misdirection rate,” and “approval rejection rate.” When dealing with failures, measure the “success rate of searching for similar failures,” “rate of providing evidence for recovery decisions,” and “reuse rate of post-mortem reviews.” The candidates are as follows.
- Memorization of technical research and design decisions
- Memorization of customer service and preparation for business negotiations
- Memorization of failure response/operation decisions
- Search internal knowledge, FAQs, and regulations
- Project decision log Of these, technical research and design judgment are the easiest to start with. It is easy to control personal information and confidentiality risks, and it is easy to record deliverables as documents, ADR, tasks, and reviews.
13.2 Minimum configuration
The minimum configuration is as follows.
- Research Log: Record the research theme, questions, hypotheses, sources, and judgments.
- Decision Log / ADR: Leave the reason for adoption/rejection.
- Ontology Lite: Define objects, relationships, states, constraints, and actions in a small way.
- Memory Layer: PoC Graphiti or equivalent temporal knowledge graph.
- MCP Layer: Connect document search, GitHub, tickets, DB, and storage tools via MCP.
- Human Review: Important decisions are always approved by humans.
13.3 Evaluation metrics
The effectiveness of the introduction will be measured not only by the quality of responses but also by the following:
- Reducing investigation time
- Reuse rate of decision bases
- Search success rate for past decisions
- New member onboarding time
- Contamination rate of false memories and old memories
- Revision rate by human review
- Auditability
- Zero security incidents
flowchart LR
Scope["Narrow scope"] --> Build["Small ontology"]
Build --> Connect["Connect via MCP"]
Connect --> Memory["Temporal Memory PoC"]
Memory --> Review["Human Review"]
Review --> Metrics["Evaluation metrics"]
Metrics --> Expand["Expand only proven areas"]
14. Final recommendation
The essence of utilizing AI is not to treat LLM as a “substitute for intelligent humans.” It is about transforming organizational reality into a form that models can reference, reason about, act on, and test. The three core concepts for this purpose are:
- Operational Ontology: Defines objects, states, relationships, actions, and authorities in the business world.
- Temporal Memory: Retains what is correct, when it was obtained, from what source, and when it was overwritten.
- Governed Tooling: Connect tools to AI using things like MCP while ensuring permissions, approvals, and audits. Graphiti is a promising candidate for Temporal Memory, and Palantir’s ontology idea becomes a reference model for Operational Ontology. MCP can be used as a standardization layer for Governed Tooling. Anthropic is also moving towards a business agent that integrates these three. In the short term, it is realistic to implement MCP + document search + small ontology + Graphiti PoC for technical research, design decisions, and ADR. In the medium to long term, we should aim for a state where AI can refer to the same business world model as humans by connecting customers, projects, systems, decisions, and business actions. This recommendation is both to avoid underestimating LLM and to avoid overestimating it. LLM is a powerful compressor that traverses languages, codes, and knowledge fragments, making it fully practical as an instruction-following model. However, organizational facts, authorities, responsibilities, history, and results do not exist within the model. The design of practical AI is determined by how the outside is structured.
Reference information
- Palantir, “Why create an Ontology?” https://www.palantir.com/docs/foundry/ontology/why-ontology
- Palantir, “Overview - Ontology” https://www.palantir.com/docs/foundry/ontology/overview
- Palantir, “The Ontology system” https://www.palantir.com/docs/foundry/architecture-center/ontology-system
- Vaswani et al., “Attention Is All You Need” https://arxiv.org/abs/1706.03762
- Devlin et al., “BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding” https://arxiv.org/abs/1810.04805
- Brown et al., “Language Models are Few-Shot Learners” https://arxiv.org/abs/2005.14165
- Ouyang et al., “Training language models to follow instructions with human feedback” https://arxiv.org/abs/2203.02155
- Bai et al., “Constitutional AI: Harmlessness from AI Feedback” https://arxiv.org/abs/2212.08073
- Bommasani et al., “On the Opportunities and Risks of Foundation Models” https://arxiv.org/abs/2108.07258
- Bender et al., “On the Dangers of Stochastic Parrots” https://dl.acm.org/doi/10.1145/3442188.3445922
- Rumelhart, Hinton, and Williams, “Learning representations by back-propagating errors” https://www.nature.com/articles/323533a0
- LeCun, Bengio, and Hinton, “Deep learning” https://www.nature.com/articles/nature14539
- Newell and Simon, “Computer Science as Empirical Inquiry: Symbols and Search” https://cacm.acm.org/research/computer-science-as-empirical-inquiry/
- McCarthy et al., “A Proposal for the Dartmouth Summer Research Project on Artificial Intelligence” https://www-formal.stanford.edu/jmc/history/dartmouth/dartmouth.html
- Harnad, “The Symbol Grounding Problem” https://www.southampton.ac.uk/~harnad/Papers/Harnad/harnad90.sgproblem.html
- Searle, “Minds, Brains, and Programs” https://www.cambridge.org/core/journals/behavioral-and-brain-sciences/article/minds-brains-and-programs/8D8E2A8A4C5A96E7C4A5385DAB3D27C1
- Clark and Chalmers, “The Extended Mind” https://academic.oup.com/analysis/article-abstract/58/1/7/153111
- Lake et al., “Building Machines That Learn and Think Like People” https://www.cambridge.org/core/product/A9535B1D745A0377E16C590E14B94993
- Gruber, “A Translation Approach to Portable Ontology Specifications” https://doi.org/10.1006/knac.1993.1008
- Berners-Lee, Hendler, and Lassila, “The Semantic Web” https://lassila.org/publications/2001/SciAm.html
- Lewis et al., “Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks” https://arxiv.org/abs/2005.11401
- Guu et al., “REALM: Retrieval-Augmented Language Model Pre-Training” https://proceedings.mlr.press/v119/guu20a.html
- Stanford AI100, “Gathering Strength, Gathering Storms” https://ai100.stanford.edu/gathering-strength-gathering-storms-one-hundred-year-study-artificial-intelligence-ai100-2021-study
- Zep / Graphiti, “Graphiti README” https://github.com/getzep/graphiti
- Rasmussen et al., “Zep: A Temporal Knowledge Graph Architecture for Agent Memory” https://arxiv.org/abs/2501.13956
- Graphiti Documentation https://help.getzep.com/graphiti/getting-started/welcome
- Anthropic, “Introducing Labs” https://www.anthropic.com/news/introducing-anthropic-labs
- Anthropic, “Claude Opus 4.6” https://www.anthropic.com/news/claude-opus-4-6
- Anthropic, “Agents for financial services” https://www.anthropic.com/news/finance-agents
- Anthropic, “Anthropic and Amazon expand collaboration for up to 5 gigawatts of new compute” https://www.anthropic.com/news/anthropic-amazon-compute
- Anthropic, “Model Context Protocol” https://docs.anthropic.com/en/docs/mcp
- Model Context Protocol, “Tools” https://modelcontextprotocol.io/specification/2025-06-18/server/tools
- Model Context Protocol, “Understanding MCP servers” https://modelcontextprotocol.io/docs/learn/server-concepts
- Model Context Protocol, “Security Best Practices” https://modelcontextprotocol.io/docs/tutorials/security/security_best_practices
- Nonaka, “A Dynamic Theory of Organizational Knowledge Creation” https://pubsonline.informs.org/doi/10.1287/orsc.5.1.14
- Nonaka and Takeuchi, “The Knowledge-Creating Company” https://academic.oup.com/book/52097
- Polanyi, “The Tacit Dimension” https://openlibrary.org/books/OL5990259M/The_tacit_dimension.
- Brown and Duguid, “Organizational Learning and Communities-of-Practice” https://pubsonline.informs.org/doi/fpi/10.1287/orsc.2.1.40
1. エグゼクティブサマリー
現代のLLMは「知識を持つ主体」というより、巨大な言語・コード・画像・行動ログから学習した確率的なパターン生成器であり、外部ツール、業務データ、記憶、権限、監査、フィードバックループを接続して初めて実務システムになる。したがって、AI活用の本質は「賢いモデルを選ぶこと」だけではなく、組織の現実をモデルが操作可能な形に変換する情報設計にある。
本レポートの結論は以下である。
- AIの歴史は、記号処理、統計的機械学習、深層学習、Transformer/LLM、エージェント化という流れで理解できる。現在の転換点は、モデル単体の知能ではなく、モデルが外部環境を読み書きする運用系へ進んでいる点にある。
- LLMの本質は、自己注意機構を中心に、文脈中の要素間関係を高次元ベクトル空間で再構成し、次にあり得る出力を生成することにある。これにより言語、コード、推論風の処理を一つのインターフェースにまとめられる。
- 人間との差分は、意識の有無という抽象論だけでなく、身体性、目的形成、継続的経験、責任、価値判断、現場制約への接地、社会的信用の所在に見出すべきである。
- AIに実務投入可能な情報は、単なる文書では不十分である。業務オブジェクト、属性、関係、状態、履歴、意思決定、権限、例外、暗黙の判断基準を構造化する必要がある。
- 記号接地は「LLMに意味を理解させる」ことではなく、組織内の記号を観測、行為、結果、責任、検証可能なデータに結びつける設計問題である。
- PalantirのOntologyは、従来のRDF/OWL的な意味論だけでなく、データ、ロジック、アクション、セキュリティを統合する operational ontology として捉えるべきである。
- Graphitiの時間認識型ナレッジグラフは、動的な記憶、履歴、関係、根拠を扱う方向性として妥当性が高い。ただし、抽出品質、スキーマ設計、運用負荷、権限、評価設計が弱いと、もっともらしいが危険な組織記憶になる。
- Anthropicの公表情報から見える方向性は、長文脈、高度なエージェント、業務アプリ統合、MCP、スキル、サブエージェント、監査・権限・企業導入に向かっている。詳細な将来ロードマップは公開されていないため、これは公式発表からの推定である。
- MCPは、AIに外部データ、ツール、プロンプト、リソースを接続する標準化レイヤーとして有効である。ただし、業務意味論、権限設計、データ品質、組織ナレッジの正規化を自動で解決するものではない。
本レポートは、AI研究史、LLM研究、知識表現、認知科学、組織知識論、エージェント基盤の文献を横断する。網羅的なシステマティックレビューではないが、Dartmouth Proposal、Newell and Simon、Rumelhart et al.、Vaswani et al.、Brown et al.、Ouyang et al.、Bai et al.、Harnad、Gruber、Berners-Lee et al.、Nonaka、Graphiti/Zep、Palantir、Anthropic、MCP仕様を、実務導入の設計判断に接続する形で読む。
flowchart LR
A["AI研究史"] --> B["LLM構造"]
B --> C["記号接地"]
C --> D["Ontology"]
D --> E["Memory"]
E --> F["MCP接続"]
F --> G["評価・監査"]
2. AIの歴史をどう捉えるべきか
AIの歴史は、単純な「人間に近づく技術の進歩」ではなく、知能をどのように機械へ実装するかを巡る複数のパラダイムの交代である。
初期AIは、推論、探索、ルール、記号操作を中心に発展した。人間の知的行為を明示的な記号と規則に分解できるという見方は、エキスパートシステムや古典的推論システムの基盤になった。しかし、現実世界の曖昧さ、例外、知識獲得コスト、環境変化に弱かった。
この時期の出発点は、McCarthy、Minsky、Rochester、Shannonによる1955年のDartmouth Proposalである。同提案は、学習や知能の諸側面を精密に記述できれば機械でシミュレートできるという研究仮説を掲げた。Newell and Simon (1976) は physical symbol system hypothesis を提示し、知能を記号と探索の計算過程として捉えた。この見方は、知識を明示ルールとして持つシステムに強い理論的支柱を与えた。
出典: Dartmouth Proposal は、AI研究を「learning」や「intelligence」を機械でシミュレートする計画として提示した。Newell and Simonの記号処理観は Computer Science as Empirical Inquiry を参照。その後、統計的機械学習は、手で規則を書く代わりに、データから規則性を学ぶ方向へ移行した。さらに深層学習は、特徴量設計そのものを学習に取り込み、画像認識、音声認識、自然言語処理を大きく進展させた。
ニューラルネットワークの復興には、Rumelhart, Hinton, and Williams (1986) の誤差逆伝播法が決定的だった。LeCun, Bengio, and Hinton (2015) は、深層学習を、表現そのものを階層的に学ぶ方法として整理した。2010年代の進展は、単に計算資源が増えたからではなく、データ、GPU、最適化、正則化、ネットワーク構造、ベンチマークが同時に成熟した結果である。
出典: 誤差逆伝播は Rumelhart, Hinton, and Williams (1986)、深層学習の総説は LeCun, Bengio, and Hinton (2015)。後者は深層学習を、複数の表現レベルを学習する方法として整理している。2017年のTransformerは、系列データを処理するうえで再帰や畳み込みに依存せず、注意機構によって文脈中の要素間関係を直接扱う設計を示した。これが現代LLMの中心的基盤になった。GPT-3以降は、大規模事前学習とプロンプトによる few-shot / zero-shot 的な利用が広まり、「タスクごとに個別モデルを作る」から「汎用モデルに文脈を与えて解かせる」へ重心が移った。
出典: Transformerの原論文 Attention Is All You Need は、Transformerを “based solely on attention mechanisms” と説明する。GPT-3の Language Models are Few-Shot Learners は、スケール拡大によりタスク非依存の few-shot 性能が改善することを報告した。2024年以降の導入現場の焦点は、モデル単体から、エージェント、ツール利用、長文脈、外部記憶、権限、監査、業務アプリ統合へ移っている。これはAIが「回答するソフトウェア」から「業務環境内で行為するソフトウェア」へ移行していることを意味する。
timeline
title AIパラダイムの推移
1950s : 記号AI
1970s : 記号操作
1980s : NN復興
2010s : 深層学習
2017 : Transformer
2020s : 基盤モデル
2024+ : Agent接続
3. LLMの原理と構造の本質
LLMを理解する際の要点は、次の五つである。
LLMの研究文脈では、2017年のTransformerだけでなく、BERT、GPT-3、InstructGPT、Constitutional AI、Foundation Modelsの議論を合わせて読む必要がある。BERT (Devlin et al., 2018) は双方向文脈を事前学習で獲得し、GPT-3 (Brown et al., 2020) は大規模自己回帰モデルが few-shot 性能を示すことを実証した。Bommasani et al. (2021) は、これらを foundation models と呼び、能力だけでなく、バイアス、評価、法的・社会的リスクを含む基盤技術として整理した。
出典: BERTは Devlin et al. (2018)、GPT-3は Brown et al. (2020)、foundation modelの概念整理は Bommasani et al. (2021)。ここでは、個別タスク用モデルから基盤モデルへ移る研究史として引用している。3.1 トークン化
LLMは文字列をそのまま理解するのではなく、テキストをトークンに分割し、各トークンを数値ベクトルとして扱う。ここでの意味は、人間が持つ経験的意味ではなく、学習データ内での共起、文脈、構文、用法、推論パターンを反映した分布的な表現である。
3.2 自己注意
Transformerの中心は自己注意である。自己注意は、入力中の各要素が他のどの要素をどれだけ参照すべきかを学習する仕組みである。これにより、長距離依存、指示、参照、コード構造、文脈上の制約を扱いやすくなる。
Vaswani et al. (2017) の貢献は、RNNやCNNを使わずに注意機構だけで系列変換を構成できることを示した点にある。LLMでは、各層の多頭注意が異なる関係を捕捉し、フィードフォワード層がその表現を変換する。これが「意味理解」に見える振る舞いの技術的基盤である。ただし、注意重みをそのまま人間可読な説明とみなすのは危険で、解釈可能性研究でも注意と説明の関係は慎重に扱われている。
出典: Vaswani et al. (2017) は、従来の系列変換モデルが recurrent / convolutional network に基づいていたのに対し、Transformerでは recurrence と convolution を捨てたと述べる。このレポートの「自己注意中心」という説明はこの設計上の差分に基づく。3.3 事前学習とスケーリング
LLMは大量のテキストやコードを用いて、次のトークン、または隠されたトークンを予測するように学習する。GPT-3の論文は、モデル規模の拡大がタスク非依存の few-shot 性能を押し上げることを示した。一方で、学習コーパス由来のバイアス、古い知識、誤情報、評価汚染、推論の不安定性も同時に抱える。
3.4 指示追従とアライメント
基盤モデルはそのままでは業務に使いにくい。人間の指示に従い、危険な出力を抑制し、会話形式で有用な応答を返すように、教師ありファインチューニング、RLHF/RLAIF、constitutional AI などの追加訓練が行われる。
Ouyang et al. (2022) は、GPT-3を人間フィードバックで指示追従させる InstructGPT を示した。Bai et al. (2022) の Constitutional AI は、人間ラベルだけに頼らず、明示された原則に基づくAIフィードバックで有害性を下げる方向を示した。運用上は、これらの手法は「モデルに倫理を内蔵した」ことを意味しない。出力傾向を改善したにすぎず、権限、監査、承認、ログ、評価はシステム側に残る。
出典: Ouyang et al. (2022) は、モデルを大きくするだけではユーザー意図への追従は保証されないとし、human feedbackで fine-tune する方法を示す。Bai et al. (2022) は、“rules or principles” によるAIフィードバックを Constitutional AI と呼んでいる。3.5 推論ではなく「推論可能な圧縮」
LLMの出力は論理エンジンの証明ではない。多くの場合、膨大な言語パターンを圧縮した結果として、推論に見える振る舞いを生成する。したがって実務では、LLMの推論をそのまま信じるのではなく、外部データ、計算、ルール、監査ログ、承認フローと組み合わせて検証可能にする必要がある。
Bender et al. (2021) は、大規模言語モデルの環境負荷、データ由来のバイアス、形式だけを模倣する危険を批判した。一方で、Brown et al. (2020) 以降の結果は、統計的予測だけでは軽視できない汎用性を示した。両者は矛盾しない。LLMは人間と同じ意味理解を持つと断定できないが、外部環境と組み合わせれば高い実務価値を持つ。
出典: 批判的観点は Bender et al. (2021)、能力面の実証は Brown et al. (2020)。本レポートでは、この二つを「LLMは過小評価も過大評価も避けるべき技術」と読む。flowchart TD
T["入力"] --> Tok["トークン化"]
Tok --> Attn["文脈処理"]
Attn --> Out["次トークン生成"]
Out --> Align["指示調整"]
Align --> Use["支援行動"]
4. 人間との違いをどこに見出すべきか
LLMと人間の違いを「人間には心がある、AIにはない」という形で止めると、システム設計にはあまり役に立たない。導入時に重要な差分は以下である。
この論点には哲学と認知科学の長い議論がある。Searle (1980) の中国語の部屋は、記号操作だけでは意味理解にならないと主張した。Dreyfusは、古典的AIが身体性、状況性、熟練、世界内存在を過小評価していると批判した。Clark and Chalmers (1998) は、認知が脳内だけでなく外部環境に拡張される可能性を論じた。Lake et al. (2017) は、人間らしい学習には、少数事例からの一般化、因果モデル、構成性、直感心理学・物理学が必要だと整理した。
出典: 記号操作と理解の差は Searle (1980)、外部環境まで含む認知の捉え方は Clark and Chalmers (1998)、人間らしい学習の要件は Lake et al. (2017) を参照。| 観点 | 人間 | LLM |
|---|---|---|
| 身体性 | 感覚、運動、疲労、危険、社会的制裁を経験する | 基本的にはテキスト・画像・ツール結果を入力として扱う |
| 目的 | 自分や組織の目的を形成・修正する | 与えられた目的を最適化するよう振る舞う |
| 記憶 | 連続的経験、感情、責任と結びつく | セッション、外部記憶、検索に依存する |
| 意味 | 行為、経験、社会関係、価値と接続される | データ内の用法・関係から分布的に表現される |
| 責任 | 判断責任を負う | 責任主体ではなく、責任ある運用の部品 |
| 暗黙知 | 身体化された技能、文脈判断、空気、勘を持つ | 観測・記録・フィードバックされない暗黙知にはアクセスできない |
重要なのは、AIを人間の代替として捉えるより、人間の判断を補強し、形式知化し、実行と検証を速める装置として設計することである。
flowchart LR
H["人間"] --> HC["身体・目的・責任"]
L["LLM"] --> LC["表現・推論・ツール"]
HC --> G["差分の理解"]
LC --> G
G --> D["設計と監査"]
5. 実務でAIにインプット可能な情報
AI活用の成否は「どのモデルを使うか」よりも「何を入力可能な状態にするか」に大きく依存する。実務投入に有効な情報は以下の階層で整理できる。
この章は、RAG、知識グラフ、業務データモデリング、ワークフロー管理の交差点にある。Lewis et al. (2020) のRAGやGuu et al. (2020) のREALMは、モデル内部に全知識を持たせるのではなく、検索された外部知識を生成に接続する方向を示した。実務では、この検索対象が単なる文書コーパスに留まると、業務状態、権限、履歴、例外の扱いが弱くなる。
出典: RAGは Lewis et al. (2020)、REALMは Guu et al. (2020)。ここでは、検索拡張を「文書検索」だけで終わらせず、業務オブジェクト・状態・行為まで広げる必要があるという設計上の示唆として引用している。5.1 第1層: 文書
規程、マニュアル、議事録、設計書、顧客対応履歴、コード、FAQなど。これは最も導入しやすいが、文書だけでは「今どれが有効か」「誰が承認したか」「例外は何か」「実際の業務状態はどうか」が曖昧になりやすい。
5.2 第2層: 構造化データ
顧客、案件、契約、在庫、従業員、プロジェクト、売上、障害、問い合わせなどのテーブルデータ。LLM単体ではなく、SQL、API、BI、データ品質管理と組み合わせる必要がある。
5.3 第3層: 業務オブジェクト
「顧客」「案件」「請求」「プロダクト」「障害」「施策」など、業務上の名詞を明示し、属性、関係、状態、ライフサイクル、権限を持たせる。ここがオントロジー化の入り口である。
5.4 第4層: 行為と意思決定
承認、差戻し、発注、価格変更、顧客連絡、デプロイ、障害対応などの業務アクション。AIが実務に入るには、読むだけでなく、どの条件で何を実行できるかを定義する必要がある。
5.5 第5層: フィードバックと結果
AIまたは人間の判断が、どの結果を生んだかを記録する。これがないと、AI活用は単発の効率化に留まり、組織学習にならない。
flowchart TD
D["文書・データ"] --> AI["AI入力層"]
BO["業務オブジェクト"] --> AI
AI --> W["判断・提案"]
W --> L["判断ログ"]
L --> F["結果フィードバック"]
F --> AI
6. 記号接地の方法
記号接地問題は、記号が記号同士の関係だけで閉じていると、何を意味しているのかがシステム内では決まらないという問題である。Harnadは、単なる言語的入出力だけでは接地が不十分であり、感覚運動的な接続が必要だと論じた。
出典: Harnad (1990) の Symbol Grounding Problem がこの章の基礎である。本レポートでは、ロボット身体そのものではなく、業務対象・行為・結果・責任への接続として再解釈している。LLM時代の記号接地は、古典的な「記号AI対コネクショニズム」の再演ではない。LLMは分布的表現により言語内の関係を強力に扱えるが、業務で問題になるのは「この顧客」「この契約」「この障害」「この承認」のような個別対象への接続である。したがって、接地は哲学的意味理解の完全解決ではなく、参照、行為、結果、責任を閉じる情報アーキテクチャとして設計する。
実務AIにおける記号接地は、必ずしもロボット身体を持たせることではない。組織内では、次の接続を作ることが現実的な接地になる。
- 記号と対象の接続: 「顧客A」「案件B」「リスクC」が、実データ上の一意なオブジェクトを指す。
- 記号と状態の接続: 「未対応」「承認済み」「障害中」「重要顧客」などの状態が、判定ルールと証跡を持つ。
- 記号と行為の接続: 「承認する」「送信する」「発注する」が、実際のシステム操作と結びつく。
- 記号と結果の接続: 行為後の売上、品質、遅延、顧客満足、リスク低減が記録される。
- 記号と責任の接続: 誰が判断し、誰が承認し、どの権限で実行されたかが残る。
この観点では、オントロジーは辞書ではなく、組織の現実を操作可能にする接地レイヤーである。
flowchart LR
S["記号<br/>顧客A・障害B・承認C"] --> O["業務オブジェクト"]
O --> St["状態<br/>未対応・承認済み・障害中"]
St --> Ac["行為<br/>送信・承認・復旧"]
Ac --> Re["結果<br/>売上・品質・リスク"]
Re --> Au["責任・監査"]
Au --> S
7. オントロジーの捉え方
オントロジーには少なくとも三つの意味がある。
Gruber (1993) は、オントロジーを概念化の明示的仕様として定義した。Guarino (1998) 以降の formal ontology は、概念の分類だけでなく、同一性、依存性、部分全体関係、役割、イベントといった基礎的区別を重視した。Berners-Lee, Hendler, and Lassila (2001) のSemantic Webは、Web上の情報を機械が処理可能な意味構造へ接続する構想だった。これらの系譜は、現代の業務AIにおいて「LLMが触る対象をどう定義するか」という問題に戻ってくる。
出典: オントロジーを「明示的仕様」として扱う定義は Gruber (1993)、Semantic Webの構想は Berners-Lee, Hendler, and Lassila (2001)。この節では、知識表現としての系譜と、業務操作レイヤーとしての現代的用法を分けている。- 哲学的オントロジー: 何が存在するのかを問う。
- 知識表現としてのオントロジー: 概念、関係、制約を機械可読に定義する。
- 業務運用としてのオントロジー: 業務上の対象、状態、行為、権限、意思決定を統合する。
AI活用に必要なのは、3番目を含むオントロジーである。単にRDF/OWLで語彙を定義しても、実務アクション、権限、監査、フィードバックがなければ業務は動かない。
Palantir FoundryのOntologyはこの点を強く押し出している。PalantirはOntologyを、データセット、仮想テーブル、モデルの上に位置し、設備、製品、注文、金融取引などの現実世界の対象に接続する operational layer と説明している。また、意味要素だけでなく、アクション、関数、動的セキュリティといった kinetic elements を含むと述べている。
出典: Palantirの Why create an Ontology? は、Ontologyを組織の “common language” として説明し、意思決定結果の capture と writeback を強調する。Action types、Functions、Permissionsの具体項目は同ドキュメントのナビゲーションおよび関連ページ群で確認できる。この考え方は、LLM時代に非常に重要である。LLMは自然言語で多様な要求を受けられるが、その要求を安全に実務へ反映するには、「どのオブジェクトに対して、どの状態で、誰の権限で、どの行為を許すか」を明確にする必要がある。
flowchart TD
BO["業務オブジェクト"] --> Rel["関係・状態"]
BO --> Act["許可された行為"]
Act --> Pol["権限・承認"]
Pol --> Aud["監査ログ"]
Aud --> FB["結果学習"]
8. Graphitiのアプローチの是非
Graphitiは、Zepの文脈基盤の中核にある時間認識型のコンテキストグラフエンジンである。公式READMEでは、静的な知識グラフではなく、事実の時間的変化、出所、エピソード、カスタム型、ハイブリッド検索を扱うものとして説明されている。Zep論文では、Graphitiを通じて会話データと業務データを動的に統合し、履歴関係を維持するアプローチが示されている。
出典: Graphiti READMEは、Graphitiを temporal context graphs for AI agents のフレームワークと説明し、事実の変化、provenance、prescribed / learned ontologyを扱うと述べる。Zep論文は Rasmussen et al. (2025)。Graphitiを評価するには、RAGの限界と比較するのが分かりやすい。RAGは、関連文書を検索して生成に渡す強力なパターンだが、文書断片の時系列、事実の更新、人物・案件・意思決定の関係、矛盾する証跡の扱いは実装依存になりやすい。Zep / Graphiti (Rasmussen et al., 2025) は、エージェント記憶を時間つき知識グラフとして扱うことで、この弱点を補う設計を示している。
出典: Zep論文 は、既存RAGを static document retrieval に限られがちだとし、Graphitiを temporally-aware knowledge graph engine として位置づける。Graphiti READMEも、古い事実を削除せず validity window で管理する設計を説明している。8.1 評価できる点
Graphitiの方向性は、以下の理由で妥当性が高い。
- 時間を扱う: 組織知識は「現在正しいこと」だけでなく、「いつ正しかったか」「いつ上書きされたか」が重要である。
- 出所を残す: エージェント記憶は、根拠となる会話、文書、JSON、イベントに戻れなければ監査に耐えない。
- 関係を扱う: フラットなベクトル検索では、人物、案件、意思決定、例外、依存関係の構造を扱いにくい。
- 動的更新を想定する: 業務では顧客状態、仕様、判断基準が変化するため、バッチ再構築だけでは遅い。
- MCPとの親和性: Graphiti MCP Serverにより、Claude DesktopやCursorなどのMCPクライアントから記憶ツールとして利用できる。
8.2 注意すべき点
ただし、Graphitiを導入すれば組織記憶が自動的に良くなるわけではない。
- 抽出品質の問題: LLMが会話から抽出したエンティティや関係は誤る。誤った関係が記憶されると、後続の判断を汚染する。
- オントロジー設計の問題: prescribed ontology と learned ontology のバランスを誤ると、グラフが混沌化する。
- 権限の問題: 誰の会話から得た知識を、誰に見せてよいかを制御しなければならない。
- 忘却の問題: 古い情報を削除するのではなく履歴化する設計は有効だが、検索時に古い情報が混入するリスクがある。
- 評価の問題: 記憶が本当に業務成果に寄与したかを測るベンチマークを自社で設計する必要がある。
8.3 結論
Graphitiは、LLMの外部記憶として有望である。ただし、最初から全社知識基盤にするのではなく、対象を限定したPoCが望ましい。たとえば、顧客対応履歴、障害対応、技術調査、設計判断、営業提案など、時間変化と関係性が重要な領域から始めるべきである。
flowchart LR
Src["会話・文書・イベント"] --> Ext["関係抽出"]
Ext --> TKG["Temporal KG"]
TKG --> Ctx["文脈組み立て"]
TKG --> Aud["出典・時刻"]
Ctx --> Agent["LLM Agent"]
Aud --> Rev["人間レビュー"]
9. 暗黙知を組織活用する方策
暗黙知は、文書化されていない知識ではなく、経験、身体化された技能、状況判断、関係性、文脈依存の勘を含む。NonakaのSECIモデルでは、暗黙知と形式知の相互変換が組織知識創造の中心に置かれる。
Polanyi (1966) の暗黙知論は、「人は語れる以上のことを知っている」という問題を提示した。Nonaka (1994) とNonaka and Takeuchi (1995) は、暗黙知と形式知の変換を、共同化、表出化、連結化、内面化の循環として整理した。Brown and Duguid (1991) は、学習とイノベーションが公式マニュアルだけでなく、実践共同体の中で起こることを示した。AI導入では、この系譜を「暗黙知を全部テキスト化する」話に矮小化してはいけない。
出典: 暗黙知の基礎は Polanyi, The Tacit Dimension、SECIモデルの源流は Nonaka (1994) と Nonaka and Takeuchi (1995)。実践共同体の観点は Brown and Duguid (1991)。AI時代の暗黙知活用は、暗黙知を完全に形式知化することではない。むしろ、暗黙知が発揮された場面を捕捉し、再利用可能な形で周辺情報と接続することである。
実務方策は以下である。
- 判断ログを残す: 「何を決めたか」だけでなく、「なぜそうしたか」「代替案は何だったか」「どの制約が効いたか」を残す。
- 熟練者の思考過程を収集する: レビューコメント、障害対応、商談準備、設計判断を、短い音声・メモ・会話ログとして残す。
- ケースベース化する: 抽象マニュアルではなく、実例、例外、失敗、復旧、顧客反応を蓄積する。
- オントロジーに接続する: 暗黙知を「顧客」「案件」「システム」「リスク」「判断基準」などの業務オブジェクトに紐づける。
- AIで外化を支援する: LLMに、会話から論点、判断基準、未確認事項、再利用可能な手順を抽出させる。
- 人間が承認する: 暗黙知の外化は誤読されやすい。熟練者や責任者によるレビューが必要である。
- 再内面化の場を作る: AIが作った文書を読むだけでなく、ペア作業、レビュー、ロールプレイ、振り返りで人間が再び身体化する。
flowchart LR
Tacit["暗黙知<br/>経験・勘・状況判断"] --> Capture["場面捕捉<br/>会話・レビュー・障害対応"]
Capture --> Externalize["外化<br/>論点・判断基準・ケース"]
Externalize --> Structure["構造化<br/>オブジェクト・関係・状態"]
Structure --> Reuse["再利用<br/>検索・提案・教育"]
Reuse --> Internalize["再内面化<br/>実践・レビュー・訓練"]
Internalize --> Tacit
10. Palantirの概念との関連
Palantir Foundry Ontologyは、AI時代の業務システム設計における重要な参照点である。Palantirのドキュメントでは、Ontologyは組織の operational layer であり、データを現実世界の対象へ接続し、意思決定、アクション、セキュリティを統合すると説明されている。
出典: Palantir Ontology overview と Why create an Ontology? を参照。後者はOntologyを組織の “digital twin” と呼び、decision capture、writeback、action typesを通じて意思決定をデータ化すると説明している。Palantirの特徴は、オントロジーを静的な知識表現に閉じず、業務対象、権限、アクション、意思決定を統合する運用層として扱う点にある。これはSemantic WebやOWLの伝統と矛盾しないが、重点が異なる。RDF/OWL系のオントロジーが「概念と関係の表現」を重視するのに対し、Foundry Ontologyは「現実の業務対象を安全に操作するための層」として提示されている。
この思想は、次のようにLLM活用と接続する。
| Palantirの概念 | LLM/AI実務での意味 |
|---|---|
| Object / Link | LLMが参照すべき業務上の名詞と関係 |
| Action | LLMが提案または実行できる業務操作 |
| Function / Logic | ルール、計算、モデル、ワークフロー |
| Dynamic Security | ユーザー・AIエージェントごとの権限制御 |
| Decision capture | 判断、承認、結果の記録 |
| Digital twin of organization | AIと人間が共有する業務世界モデル |
Palantir型の発想の強みは、AIを単なるチャットUIに閉じ込めず、業務世界の状態変化に接続する点である。一方で、導入には大きな設計・統合コストがかかる。自社で同様の思想を採用する場合は、最初から巨大な全社オントロジーを作るのではなく、特定ワークフローの「小さな operational ontology」から始めるべきである。
flowchart TD
Data["データ資産"] --> Ont["Ontology"]
Logic["関数・モデル"] --> Ont
Ont --> Obj["対象・関係"]
Obj --> Act["行為"]
Act --> Ops["業務結果"]
Ops --> Ont
11. Anthropicの今後のロードマップをどう読むか
Anthropicは詳細な将来ロードマップを包括的には公開していない。したがって、ここでは2026年5月6日時点の公式発表から読み取れる方向性として整理する。
この章は、公式ロードマップの引用ではなく、Anthropicの公開済み製品・仕様・発表からの推定である。2024年11月のMCP発表、Claude CodeのMCP連携、Subagents、Skills、Opus 4.6の1M context betaとagent teams、Labs、金融向けagent templatesは、同じ方向を示している。つまり、Anthropicは「単発応答のLLM」から「長時間タスクを分解し、外部ツールを使い、組織の権限下で実行するエージェント基盤」へ重心を移している。
出典: MCP発表は Anthropic, Introducing the Model Context Protocol。Opus 4.6の1M token context、context compaction、agent teamsは Claude Opus 4.6 に基づく。ここでの「方向性」は公式ロードマップではなく、公表済み機能からの推定である。11.1 公表情報から見える方向性
- エージェント化: Claude Code、Cowork、Managed Agents、金融向け agent templates など、回答ではなく作業を実行する方向へ進んでいる。
- 業務アプリ統合: Excel、PowerPoint、Word、Outlook、金融データプロバイダ、企業システムとの接続を強めている。
- MCP中心の接続戦略: MCPをAIと外部データ・ツールを接続する標準として位置づけ、APIやClaude Code、Claude.aiで利用可能にしている。
- 長時間・長文脈作業: Opus 4.6では1M token context beta、compaction、長時間タスク、agent teamsが示されている。
- 企業統制: 権限、認証、監査ログ、コンプライアンス、クラウド基盤、パートナーエコシステムを強化している。
- 計算資源拡大: AWSとの追加提携により、学習・推論能力の拡張を進めている。
- 実験と製品化の分離: Labsを通じて、研究プレビュー、実験的機能、プロダクト化を分けて進める体制を示している。
11.2 導入時の読み
Anthropicの方向性は、モデル単体の性能競争から、業務エージェント基盤、ツール接続、組織導入、監査可能な自律作業へ移っている。MCP、Skills、Subagents、長文脈、office連携、Claude Code/Coworkは同じ方向を向いている。
ただし、「Anthropicが今後必ずこうする」という断定は避けるべきである。ロードマップとして使うなら、「公表済み機能から見た実務導入上の仮説」として扱うのが妥当である。
flowchart LR
MCP["MCP"] --> Conn["接続"]
Skills["Skills"] --> Work["反復手順"]
Sub["Subagents"] --> Team["分担実行"]
Conn --> Platform["Agent基盤"]
Work --> Platform
Team --> Platform
12. MCPでどこまで対応可能か
MCPは、AIアプリケーションと外部システムを接続する標準プロトコルである。AnthropicはMCPを、データソースやツールをAIに接続するための標準として説明している。公式仕様では、Tools、Resources、Prompts、Sampling、Roots、Elicitation、Authorization などが扱われる。
出典: AnthropicのMCP発表は、MCPを “open standard” として、AI assistants と data sources を接続するものと説明している。MCP公式の What is MCP? も、AI applicationsを external systems に接続する標準と説明する。MCPの位置づけは、HTTPやSQLのように万能な意味論ではなく、接続の共通インターフェースである。公式仕様では、server features として Resources、Prompts、Tools、client features として Sampling、Roots などが定義される。2025年以降の仕様では、認可やセキュリティ考慮も整備されている。実務では、MCP serverを作ること自体より、どの操作を公開し、どの権限で実行し、どのログを残すかが本質になる。
出典: MCP serverの基本機能は Understanding MCP servers。同ページはTools、Resources、Promptsを三つのbuilding blocksとして説明し、toolsはモデルが呼び出す操作、resourcesは文脈情報、promptsはテンプレートと位置づける。12.1 MCPでできること
- ツール実行: API呼び出し、DB検索、計算、ファイル操作、業務システム操作をAIに公開する。
- リソース提供: ファイル、DB、API、文書などをURI付きの文脈として公開する。
- プロンプトテンプレート: 業務ワークフローに沿った再利用可能な指示テンプレートを提供する。
- ユーザー確認: 実装次第で、危険操作に対する確認UIや承認を挟める。
- 既存システム統合: Slack、GitHub、Google Drive、DB、社内APIなどの接続を標準化しやすい。
- Graphitiのような記憶ツール連携: MCP server化された記憶・ナレッジグラフを、複数のAIクライアントから利用できる。
12.2 MCPだけではできないこと
- 意味設計の自動化: MCPはプロトコルであり、業務オントロジーを自動で作らない。
- データ品質保証: 古いデータ、矛盾、重複、誤入力は別途管理が必要である。
- 責任設計: 誰が承認し、誰が責任を負うかはMCPの外側の業務設計で決める。
- 権限・監査の完全解決: 仕様にセキュリティ考慮はあるが、実装と運用が重要である。
- 記号接地そのもの: MCPは接続経路を提供するが、記号と現実対象・行為・結果を対応づける設計は別に必要である。
12.3 推奨アーキテクチャ
実務では、MCPを以下のように位置づけるのがよい。
LLM / Agent
↓
MCP Client
↓
MCP Servers
├─ Document / Search Server
├─ Database / BI Server
├─ Workflow / Ticket / CRM Server
├─ Graphiti / Memory Server
└─ Approval / Audit Server
↓
Operational Ontology
├─ Objects
├─ Relations
├─ States
├─ Actions
├─ Permissions
└─ Feedback
MCPは「接続の標準」であり、Operational Ontologyは「接続されたものの意味と行為可能性を定義する層」である。この二つを分けて設計することが重要である。
flowchart TD
Agent["LLM Agent"] --> Client["MCP Client"]
Client --> Surface["Tools / Resources"]
Surface --> Data["API・文書"]
Data --> Ont["Ontology"]
Ont --> Aud["監査・承認"]
13. 実務導入の推奨方針
13.1 最初に作るべきもの
最初に作るべきものは、全社AI基盤ではなく、限定領域の「業務記憶プロジェクト」である。
導入研究としては、RAG単体、知識グラフ単体、エージェント単体を比較するのではなく、業務成果に対する寄与で評価するべきである。たとえば、技術調査なら「過去判断の再発見率」「出典付き回答率」「レビュー修正率」「古い情報の混入率」を測る。顧客対応なら「応答準備時間」「誤案内率」「承認差戻し率」を測る。障害対応なら「類似障害検索成功率」「復旧判断の根拠提示率」「事後レビューの再利用率」を測る。
候補は以下である。
- 技術調査・設計判断の記憶
- 顧客対応・商談準備の記憶
- 障害対応・運用判断の記憶
- 社内ナレッジ・FAQ・規程の検索
- プロジェクト意思決定ログ
この中では、技術調査・設計判断が最も始めやすい。個人情報や機密リスクを制御しやすく、成果物も文書、ADR、タスク、レビューとして残しやすい。
13.2 最小構成
最小構成は以下でよい。
- Research Log: 調査テーマ、問い、仮説、ソース、判断を残す。
- Decision Log / ADR: 採用・不採用の理由を残す。
- Ontology Lite: 対象、関係、状態、制約、アクションを小さく定義する。
- Memory Layer: Graphitiまたは同等の temporal knowledge graph をPoCする。
- MCP Layer: 文書検索、GitHub、チケット、DB、記憶ツールをMCP経由で接続する。
- Human Review: 重要判断は必ず人間が承認する。
13.3 評価指標
導入効果は、単なる回答品質ではなく以下で測る。
- 調査時間の短縮
- 判断根拠の再利用率
- 過去の意思決定の検索成功率
- 新メンバーのオンボーディング時間
- 誤った記憶・古い記憶の混入率
- 人間レビューでの修正率
- 監査可能性
- セキュリティインシデントゼロ
flowchart LR
Scope["限定テーマ"] --> Build["小さなOntology"]
Build --> Connect["MCPで接続"]
Connect --> Memory["Temporal Memory PoC"]
Memory --> Review["Human Review"]
Review --> Metrics["評価指標"]
Metrics --> Expand["成功領域だけ拡張"]
14. 最終提言
AI活用の本質は、LLMを「知能ある人間の代用品」として扱うことではない。組織の現実を、モデルが参照し、推論し、行為し、検証できる形に変換することである。
そのための中核概念は、次の三つである。
- Operational Ontology: 業務世界の対象、状態、関係、行為、権限を定義する。
- Temporal Memory: 何がいつ正しく、どの根拠から得られ、いつ上書きされたかを保持する。
- Governed Tooling: MCPなどを使ってAIにツールを接続しつつ、権限、承認、監査を徹底する。
GraphitiはTemporal Memoryの候補として有望であり、PalantirのOntology思想はOperational Ontologyの参照モデルになる。MCPはGoverned Toolingの標準化レイヤーとして使える。Anthropicの方向性も、この三つを統合した業務エージェントへ向かっている。
短期的には、技術調査・設計判断・ADRを対象に、MCP + 文書検索 + 小さなオントロジー + Graphiti PoCを実施するのが現実的である。中長期的には、顧客、案件、システム、意思決定、業務アクションを接続し、AIが人間と同じ業務世界モデルを参照できる状態を目指すべきである。
この提言は、LLMを過小評価しないためのものでもあり、過大評価しないためのものでもある。LLMは、言語・コード・知識断片を横断する強力な圧縮器であり、指示追従モデルとしては十分に実用的である。しかし、組織の事実、権限、責任、履歴、結果はモデル内部には存在しない。実務AIの設計は、その外側をどう構造化するかで決まる。
参考情報
- Palantir, “Why create an Ontology?” https://www.palantir.com/docs/foundry/ontology/why-ontology
- Palantir, “Overview - Ontology” https://www.palantir.com/docs/foundry/ontology/overview
- Palantir, “The Ontology system” https://www.palantir.com/docs/foundry/architecture-center/ontology-system
- Vaswani et al., “Attention Is All You Need” https://arxiv.org/abs/1706.03762
- Devlin et al., “BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding” https://arxiv.org/abs/1810.04805
- Brown et al., “Language Models are Few-Shot Learners” https://arxiv.org/abs/2005.14165
- Ouyang et al., “Training language models to follow instructions with human feedback” https://arxiv.org/abs/2203.02155
- Bai et al., “Constitutional AI: Harmlessness from AI Feedback” https://arxiv.org/abs/2212.08073
- Bommasani et al., “On the Opportunities and Risks of Foundation Models” https://arxiv.org/abs/2108.07258
- Bender et al., “On the Dangers of Stochastic Parrots” https://dl.acm.org/doi/10.1145/3442188.3445922
- Rumelhart, Hinton, and Williams, “Learning representations by back-propagating errors” https://www.nature.com/articles/323533a0
- LeCun, Bengio, and Hinton, “Deep learning” https://www.nature.com/articles/nature14539
- Newell and Simon, “Computer Science as Empirical Inquiry: Symbols and Search” https://cacm.acm.org/research/computer-science-as-empirical-inquiry/
- McCarthy et al., “A Proposal for the Dartmouth Summer Research Project on Artificial Intelligence” https://www-formal.stanford.edu/jmc/history/dartmouth/dartmouth.html
- Harnad, “The Symbol Grounding Problem” https://www.southampton.ac.uk/~harnad/Papers/Harnad/harnad90.sgproblem.html
- Searle, “Minds, Brains, and Programs” https://www.cambridge.org/core/journals/behavioral-and-brain-sciences/article/minds-brains-and-programs/8D8E2A8A4C5A96E7C4A5385DAB3D27C1
- Clark and Chalmers, “The Extended Mind” https://academic.oup.com/analysis/article-abstract/58/1/7/153111
- Lake et al., “Building Machines That Learn and Think Like People” https://www.cambridge.org/core/product/A9535B1D745A0377E16C590E14B94993
- Gruber, “A Translation Approach to Portable Ontology Specifications” https://doi.org/10.1006/knac.1993.1008
- Berners-Lee, Hendler, and Lassila, “The Semantic Web” https://lassila.org/publications/2001/SciAm.html
- Lewis et al., “Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks” https://arxiv.org/abs/2005.11401
- Guu et al., “REALM: Retrieval-Augmented Language Model Pre-Training” https://proceedings.mlr.press/v119/guu20a.html
- Stanford AI100, “Gathering Strength, Gathering Storms” https://ai100.stanford.edu/gathering-strength-gathering-storms-one-hundred-year-study-artificial-intelligence-ai100-2021-study
- Zep / Graphiti, “Graphiti README” https://github.com/getzep/graphiti
- Rasmussen et al., “Zep: A Temporal Knowledge Graph Architecture for Agent Memory” https://arxiv.org/abs/2501.13956
- Graphiti Documentation https://help.getzep.com/graphiti/getting-started/welcome
- Anthropic, “Introducing Labs” https://www.anthropic.com/news/introducing-anthropic-labs
- Anthropic, “Claude Opus 4.6” https://www.anthropic.com/news/claude-opus-4-6
- Anthropic, “Agents for financial services” https://www.anthropic.com/news/finance-agents
- Anthropic, “Anthropic and Amazon expand collaboration for up to 5 gigawatts of new compute” https://www.anthropic.com/news/anthropic-amazon-compute
- Anthropic, “Model Context Protocol” https://docs.anthropic.com/en/docs/mcp
- Model Context Protocol, “Tools” https://modelcontextprotocol.io/specification/2025-06-18/server/tools
- Model Context Protocol, “Understanding MCP servers” https://modelcontextprotocol.io/docs/learn/server-concepts
- Model Context Protocol, “Security Best Practices” https://modelcontextprotocol.io/docs/tutorials/security/security_best_practices
- Nonaka, “A Dynamic Theory of Organizational Knowledge Creation” https://pubsonline.informs.org/doi/10.1287/orsc.5.1.14
- Nonaka and Takeuchi, “The Knowledge-Creating Company” https://academic.oup.com/book/52097
- Polanyi, “The Tacit Dimension” https://openlibrary.org/books/OL5990259M/The_tacit_dimension.
- Brown and Duguid, “Organizational Learning and Communities-of-Practice” https://pubsonline.informs.org/doi/fpi/10.1287/orsc.2.1.40