Glean 拾遗
日刊 /2026-07-21 / 图工程替代 RAG:微软、斯坦福与 Anthropic 的实践与收益

图工程替代 RAG:微软、斯坦福与 Anthropic 的实践与收益

原文 x.com 收录 2026-07-21 06:00 阅读 16 min
AI 解读

传统 RAG 在处理多实体关联的复杂问题时效果有限,微软、斯坦福与 Anthropic 各自独立发现图工程(知识图谱)可显著提升 AI 系统准确性。微软 GraphRAG 将非结构化文本转为知识图谱,实现 18% 准确率提升、85% Token 成本降低;斯坦福 DSPy 和 STORM 将模型视为图中的一个节点,并证明小模型配合优质图谱可超越大模型;Anthropic 通过 Claude 结合 MCP 协议,在 LaunchNotes 案例中实现事故检测速度提升 5 倍、会议时间减少 50%。文章提供了完整的图工程流水线、五个核心 Prompt 模板以及五个落地商业场景,适合正在优化 RAG 系统或探索知识图谱与 LLM 结合的工程师。

原文 16 分钟
原文 x.com ↗
§ 1

Graph Engineering replaced RAG at Microsoft, Stanford and Anthropic. Here's how it works.

微软、斯坦福和Anthropic使用图工程取代RAG的方法

§ 2

Right now anyone can build an AI system that answers complex questions with 18% better accuracy and 85% lower costs than regular RAG. No PhD. No million dollar budget. No team of researchers.

The only thing standing between you and that result is one concept that Microsoft, Stanford and Anthropic all independently discovered - and which most developers still haven't caught up with.

Regular RAG finds text. Graph Engineering finds relationships. Here's the full system behind it.

Bookmark This and follow - I'm Sprytix, a developer who builds AI systems and automation pipelines that turn technology into real income. DMs open.

现在,任何人都可以构建一个AI系统,回答复杂问题的准确率比常规RAG高18%,成本降低85%。无需博士学历,无需百万美元预算,也无需研究团队。

你与这个结果之间唯一隔着的,是一个被微软、斯坦福和Anthropic独立发现、但大多数开发者仍未能跟上的概念。

常规RAG搜索文本。图工程搜索关系。以下是其完整系统。

收藏本文并关注——我是Sprytix,一位构建AI系统和自动化管线的开发者,将技术转化为实际收入。私信开放。

§ 3

Why regular RAG hits a ceiling

Regular RAG works like this:

Question
↓
Search documents for matching text
↓
Return most relevant chunks
↓
Model generates answer from chunks

This works well for simple questions. It breaks completely for complex ones.

Ask "why did our product sales drop in March?" and RAG finds documents with the words "sales" and "March." It finds fragments. It does not find the chain of causation.

RAG answer:
Here are 5 documents mentioning sales in March.

Graph Engineering answer:
Sales dropped because of a release delay
caused by a supplier dependency
triggered by a warehouse problem
which generated negative reviews
which reduced conversion by 23%.

Same model. Same data. Completely different result - because one system searches text and the other searches reality.

This is what Microsoft, Stanford and Anthropic all independently discovered. And it's why all three of them moved to Graph Engineering.

为什么常规RAG会遇到天花板

常规RAG的工作方式如下:

问题
↓
在文档中搜索匹配文本
↓
返回最相关的片段
↓
模型根据片段生成答案

这适用于简单问题。但对于复杂问题,它完全失效。

问“为什么我们产品的销量在三月份下降?”RAG会找到包含“销售”和“三月”的文档。它找到的是碎片,而非因果链。

RAG答案:
以下是5份提到三月销售的文档。

图工程答案:
销量下降是因为发布延迟
由供应商依赖引发
被仓库问题触发
产生了负面评论
导致转化率降低23%。

同样的模型,同样的数据,完全不同的结果——因为一个系统搜索文本,另一个搜索现实。

这正是微软、斯坦福和Anthropic各自独立发现的。也是三者纷纷转向图工程的原因。

§ 4

Document 1 - Microsoft GraphRAG

  1. github.com/microsoft/graphrag
  2. github.com/microsoft/graphrag/blob/main/docs/index/architecture.md

architecture diagram

Microsoft built GraphRAG and open-sourced it. The results from their research are the most concrete numbers available on what Graph Engineering actually delivers versus regular RAG.

The architecture converts unstructured text into a full knowledge graph:

Load Documents
↓
Chunk Documents
↓
Extract Entities and Relations
↓
Build Graph
↓
Detect Communities
↓
Generate Community Reports
↓
Embed Entities and Reports
↓
Local Search / Global Search

The key insight Microsoft documented: regular RAG answers local questions well - find me information about this specific entity. It fails on global questions - what are the main themes across this entire dataset, what patterns connect these 10,000 documents.

Graph Engineering answers both.

Local Search   |  what happened with supplier X in March
               |  finds specific node and its connections

Global Search  |  what are the main risk patterns across
               |  all our supplier relationships
               |  finds patterns across entire graph

Practical results from Microsoft's GraphRAG research:

Accuracy improvement    |  18% higher than raw document approach
Token cost reduction    |  85% lower than loading structured files directly
Cost per task           |  approximately $0.004 in tested configuration

arxiv.org/abs/2603.22528

Chart from ChatP&ID paper

These numbers come from the ChatP&ID paper - GraphRAG applied to industrial engineering diagrams. The same principles apply across domains.

文档1 - 微软GraphRAG

  1. github.com/microsoft/graphrag
  2. github.com/microsoft/graphrag/blob/main/docs/index/architecture.md

架构图

微软构建并开源了GraphRAG。他们的研究提供了图工程相比常规RAG最具体的量化成果。

该架构将非结构化文本转化为完整知识图谱:

加载文档
↓
分块文档
↓
提取实体与关系
↓
构建图
↓
检测社区
↓
生成社区报告
↓
嵌入实体与报告
↓
本地搜索 / 全局搜索

微软记录的关键洞察:常规RAG擅长回答本地问题——查找特定实体的信息。它无法回答全局问题——整个数据集的主要主题是什么,连接这10,000份文档的模式是什么。

图工程两者都能回答。

本地搜索   |  供应商X在三月发生了什么
          |  找到特定节点及其连接

全局搜索  |  所有供应商关系中的主要风险模式
          |  在整个图中寻找模式

微软GraphRAG研究的实际结果:

准确率提升    |  比纯文档方法高18%
Token成本降低  |  比直接加载结构化文件低85%
单任务成本    |  约$0.004(在测试配置下)

arxiv.org/abs/2603.22528

ChatP&ID论文图表

这些数字来自ChatP&ID论文——GraphRAG应用于工业工程图。同样的原理适用于所有领域。

§ 5

Document 2 - Stanford DSPy and the graph connection

  1. github.com/stanfordnlp/dspy
  2. arxiv.org/abs/2310.03714

Stanford's DSPy paper established that the model is a node in a graph - not the center of the universe. This is the theoretical foundation that connects directly to Graph Engineering.

DSPy treats the AI pipeline as a graph of modules:

Question
↓
Retriever      - finds relevant information
↓
Reasoning      - processes and connects
↓
Verifier       - checks the result
↓
Answer

The connection to Graph Engineering is direct: DSPy optimizes the pipeline graph, GraphRAG optimizes the knowledge graph. Both treat the model as one component in a larger structure rather than the entire solution.

Stanford's STORM paper goes further:

  1. github.com/stanford-oval/storm
  2. arxiv.org/abs/2402.14207

STORM builds knowledge from scratch through a structured graph of research steps before writing a single word. Research, source collection, outline, writing, verification, revision - each step informed by the relationships discovered in the previous one.

The shared insight across all Stanford research: complex tasks need a system of connected steps, not a single model call. The graph is the system.

Document 3 - Stanford scaling laws for knowledge graphs

arxiv.org/abs/2505.16276

This paper compared 26 open-source models on knowledge graph engineering tasks. The conclusion is one of the most important in the field:

Larger model + bad graph   |  worse results
Smaller model + good graph |  better results

The right graph beats the bigger model. Every time.

This is the same conclusion Microsoft reached with GraphRAG and Anthropic reached with Claude Code - the system around the model determines the output more than the model itself. Graph Engineering is the most concrete implementation of that principle.

Document 4 - MIT Press research on relational memory

direct.mit.edu/tacl/article/doi/10.1162/tacl_a_00476

Published in Transactions of the Association for Computational Linguistics.

The research shows what happens when you connect a language model to relational memory - a knowledge graph of relationships rather than just text chunks.

Text Context
↓
Retrieve Relevant Relations from Graph
↓
Relational Memory
↓
Language Model
↓
More coherent, more accurate generation

The key finding: models with access to explicit relationship structures produce more coherent text and make fewer logical errors than models working from text alone.

This is the scientific explanation for why Graph Engineering works. The model doesn't have to infer relationships from text. The relationships are explicit in the graph. The model uses them directly.

Document 5 - KEPLER

  1. direct.mit.edu/tacl/article-abstract/doi/10.1162/tacl_a_00360/98089
  2. github.com/THU-KEG/KEPLER

KEPLER combines language model training with knowledge graph embeddings. Instead of treating language understanding and factual knowledge as separate problems - KEPLER optimizes both simultaneously.

Language Model
+
Knowledge Embeddings
+
Knowledge Graph
=
Model that understands both language and facts

The practical implication: a model that has access to a properly structured knowledge graph doesn't have to guess at relationships between entities. It looks them up. The accuracy difference on factual questions is significant.

文档2 - 斯坦福DSPy与图的连接

  1. github.com/stanfordnlp/dspy
  2. arxiv.org/abs/2310.03714

斯坦福的DSPy论文确立了一个观点:模型是图中的一个节点,而非宇宙中心。这是图工程的直接理论基础。

DSPy将AI管线视为模块图:

问题
↓
检索器   - 查找相关信息
↓
推理      - 处理与连接
↓
验证器    - 检查结果
↓
答案

与图工程的关联很直接:DSPy优化管线图,GraphRAG优化知识图谱。两者都将模型视为更大结构中的一个组件,而非整体解决方案。

斯坦福的STORM论文更进一步:

  1. github.com/stanford-oval/storm
  2. arxiv.org/abs/2402.14207

STORM在写任何文字之前,通过结构化的研究步骤图从头构建知识。研究、资料收集、大纲、写作、验证、修订——每一步都受到前一步发现的关系的启发。

所有斯坦福研究的共同洞察:复杂任务需要连接步骤的系统,而非单次模型调用。图就是系统。

文档3 - 知识图谱的缩放定律(斯坦福)

arxiv.org/abs/2505.16276

该论文比较了26个开源模型在知识图谱工程任务上的表现。结论是该领域最重要的发现之一:

更大的模型 + 糟糕的图   |  更差的结果
更小的模型 + 好的图    |  更好的结果

正确的图总能击败更大的模型。

这与微软在GraphRAG和Anthropic在Claude Code中得到的结论一致——模型周围的系统比模型本身更能决定输出。图工程是该原则最具体的实现。

文档4 - MIT出版社关于关系记忆的研究

direct.mit.edu/tacl/article/doi/10.1162/tacl_a_00476

发表于《计算语言学协会汇刊》。

该研究展示了将语言模型连接到关系记忆(一个知识图谱,而非仅仅文本片段)时发生的情况。

文本上下文
↓
从图中检索相关关系
↓
关系记忆
↓
语言模型
↓
更连贯、更准确的生成

关键发现:拥有明确关系结构的模型生成的文本更连贯,逻辑错误少于仅依赖文本的模型。

这是图工程为何有效的科学解释。模型无需从文本推断关系,关系在图中明确存在,模型直接使用它们。

文档5 - KEPLER

  1. direct.mit.edu/tacl/article-abstract/doi/10.1162/tacl_a_00360/98089
  2. github.com/THU-KEG/KEPLER

KEPLER将语言模型训练与知识图谱嵌入结合。它不将语言理解和事实知识视为独立问题,而是同时优化两者。

语言模型
+
知识嵌入
+
知识图谱
=
能够理解语言和事实的模型

实际意义:拥有良好结构知识图谱的模型无需猜测实体间的关系,它直接查找。在事实性问题上的准确率差异显著。

§ 6

Document 6 - Anthropic and Claude in the graph

  1. www.anthropic.com/customers/graph
  2. github.com/anthropics/anthropic-cookbook
  3. github.com/modelcontextprotocol

Anthropic doesn't have a product called "Graph Engineering." What they have is three layers where Claude integrates directly into graph architecture.

Layer 1 - Claude extracts the graph from text

Documents
↓
Claude extracts entities and relationships
↓
JSON triples:
{
  "subject": "Anthropic",
  "relation": "created",
  "object": "Claude"
}
↓
Knowledge Graph

Claude handles entity extraction, relation extraction, deduplication, normalization and ontology drafting. The tasks that used to require specialized NLP pipelines now run through one API call.

Layer 2 - Claude queries the graph

User Question
↓
Claude
↓
Cypher / SPARQL query
↓
Knowledge Graph
↓
Result
↓
Claude explanation in plain language

Claude translates natural language into graph queries, runs them against Neo4j or any graph database and explains the results. No query language knowledge required from the user.

Layer 3 - MCP connects Claude to the graph

github.com/modelcontextprotocol

Claude
↓
MCP Protocol
↓
Graph Database
↓
Entities + Relationships
↓
Claude with full graph context

MCP is the transport layer that gives Claude permanent access to any knowledge graph without rebuilding the connection for every session.

The LaunchNotes case - real production numbers

www.anthropic.com/customers/graph

LaunchNotes graph output

LaunchNotes built a product called Graph that connects GitHub, Jira and Linear. Claude analyzes the relationships between engineering work across all three systems.

GitHub commits
+
Jira tickets
+
Linear tasks
↓
Graph of Engineering Work
↓
Claude
↓
Incident Detection + Project Insights

Results from the Anthropic case study:

Incident detection     |  up to 5x faster
Meeting time           |  approximately 50% reduction
Release notes          |  generated automatically in seconds

These numbers come from connecting structured relationship data - not just searching documents.

文档6 - Anthropic与Claude在图中的角色

  1. www.anthropic.com/customers/graph
  2. github.com/anthropics/anthropic-cookbook
  3. github.com/modelcontextprotocol

Anthropic并没有一个叫“图工程”的产品。他们拥有的是Claude直接集成到图架构中的三个层次。

第一层 - Claude从文本中提取图

文档
↓
Claude提取实体与关系
↓
JSON三元组:
{
  "subject": "Anthropic",
  "relation": "created",
  "object": "Claude"
}
↓
知识图谱

Claude处理实体提取、关系提取、去重、归一化和本体起草。过去需要专用NLP管线的任务,现在通过一次API调用即可完成。

第二层 - Claude查询图

用户问题
↓
Claude
↓
Cypher / SPARQL查询
↓
知识图谱
↓
结果
↓
Claude用通俗语言解释

Claude将自然语言转化为图查询,在Neo4j或任何图数据库中执行,并解释结果。用户无需了解查询语言。

第三层 - MCP将Claude连接到图

github.com/modelcontextprotocol

Claude
↓
MCP协议
↓
图数据库
↓
实体 + 关系
↓
拥有完整图上下文的Claude

MCP是传输层,使Claude能够永久访问任何知识图谱,无需为每次会话重建连接。

LaunchNotes案例 - 真实生产数据

www.anthropic.com/customers/graph

LaunchNotes图输出

LaunchNotes构建了一个名为Graph的产品,连接GitHub、Jira和Linear。Claude分析三个系统中工程工作之间的关系。

GitHub提交
+
Jira工单
+
Linear任务
↓
工程工作图
↓
Claude
↓
事件检测 + 项目洞察

Anthropic案例研究的结果:

事件检测      |  快至5倍
会议时间      |  减少约50%
发布说明      |  秒级自动生成

这些数字来自于连接结构化关系数据,而非仅仅搜索文档。

§ 7

What a knowledge graph actually is

Before building one - the fundamental concept.

A knowledge graph stores information as triples:

Subject → Relation → Object

Examples:

Anthropic → created → Claude
Claude → supports → MCP
MCP → connects → external tools
Microsoft → built → GraphRAG
GraphRAG → reduces token cost by → 85%

Every piece of information is an explicit relationship between two entities. Not a paragraph of text that might contain this information - an explicit, structured, queryable fact.

Regular database:
Table of companies
Table of products
No explicit relationships between them

Knowledge graph:
Company → created → Product
Product → competes with → Other Product
Other Product → owned by → Other Company
Company → invested in → Other Company

The graph doesn't just store facts. It stores how facts connect to each other. That's what makes complex reasoning possible.

知识图谱到底是什么

在构建之前——基本概念。

知识图谱以三元组形式存储信息:

主体 → 关系 → 客体

示例:

Anthropic → 创建 → Claude
Claude → 支持 → MCP
MCP → 连接 → 外部工具
微软 → 构建 → GraphRAG
GraphRAG → 降低token成本 → 85%

每条信息都是两个实体之间的明确关系。不是一段可能包含该信息的文本,而是一个明确、结构化、可查询的事实。

常规数据库:
公司表
产品表
它们之间没有明确关系

知识图谱:
公司 → 创建 → 产品
产品 → 与...竞争 → 其他产品
其他产品 → 属于 → 其他公司
公司 → 投资 → 其他公司

图不仅存储事实,还存储事实之间的连接方式。这正是复杂推理成为可能的原因。

§ 8

The full Graph Engineering pipeline

Step 1  |  Collect raw documents
        |  PDFs, emails, reports, database exports

Step 2  |  Extract entities
        |  people, companies, products, events, concepts

Step 3  |  Extract relationships
        |  who did what to whom, when, why, how

Step 4  |  Build schema
        |  define entity types and relationship types

Step 5  |  Deduplicate and normalize
        |  "Microsoft Corp" and "MSFT" are the same entity

Step 6  |  Store in graph database
        |  Neo4j, Amazon Neptune, PostgreSQL with graph extension

Step 7  |  Build retrieval layer
        |  local search for specific entities
        |  global search for patterns across entire graph

Step 8  |  Connect model
        |  Claude queries graph via MCP or direct API

Step 9  |  Update continuously
        |  new documents expand the graph
        |  contradictions get flagged for review

The LLM-assisted Knowledge Graph Engineering paper at arxiv.org/abs/2307.06917 benchmarks how well language models handle each of these steps. The honest finding: LLMs are excellent assistants for extraction and normalization but zero-shot graph generation is not yet reliable enough for production without human review on the schema and deduplication steps.

完整的图工程流水线

步骤1  |  收集原始文档
        |  PDF、邮件、报告、数据库导出

步骤2  |  提取实体
        |  人物、公司、产品、事件、概念

步骤3  |  提取关系
        |  谁对谁做了什么、何时、为何、如何

步骤4  |  构建模式
        |  定义实体类型和关系类型

步骤5  |  去重与归一化
        |  "Microsoft Corp"和"MSFT"是同一实体

步骤6  |  存储到图数据库
        |  Neo4j、Amazon Neptune、带图扩展的PostgreSQL

步骤7  |  构建检索层
        |  本地搜索特定实体
        |  全局搜索整个图中的模式

步骤8  |  连接模型
        |  Claude通过MCP或直接API查询图

步骤9  |  持续更新
        |  新文档扩展图
        |  矛盾标记待审核

arxiv.org/abs/2307.06917上的LLM辅助知识图谱工程论文对语言模型处理每个步骤的能力进行了基准测试。诚实的发现:LLM在提取和归一化方面是优秀的助手,但在模式构建和去重步骤上,零样本图生成尚不可靠,需要人工审核才能投入生产。

§ 9

The five prompts that run the entire pipeline

Graph Engineering doesn't eliminate prompts. It uses them at each specific stage of the graph pipeline.

Prompt 1 - Extraction

Extract all organizations, people, products and events.

For each entity return:
- canonical_name
- type
- description
- source

For each relationship return:
- source_entity
- relation_type
- target_entity
- evidence
- confidence_score

Prompt 2 - Normalization

Compare the following entities.
Determine whether they refer to:
- the same entity
- related but different entities
- unrelated entities

Return canonical name and explanation.
Do not merge entities without clear evidence.

Prompt 3 - Graph query

Translate the user question into a Cypher query.
Use only relationships present in the schema.
Do not invent labels or properties.
Return the query and a short explanation of the logic.

Prompt 4 - Grounded answer

Answer using only the retrieved graph paths.
For every conclusion:
- identify the supporting nodes
- identify the relationship path
- state uncertainty clearly
- do not infer causation from correlation

Prompt 5 - Graph maintenance

Compare new facts with the existing graph.
Classify each fact as:
- new
- duplicate
- contradiction
- update
- uncertain

Do not overwrite existing facts without evidence.

As Microsoft's GraphRAG documentation shows - prompts handle extraction, relationship identification, summarization and community report generation internally. Prompt engineering is the mechanism inside graph engineering, not its competitor.

驱动整个管线的五个提示

图工程并没有消除提示,而是在图管线的每个特定阶段使用它们。

提示1 - 提取

提取所有组织、人物、产品和事件。

对每个实体返回:
- canonical_name(规范名称)
- type(类型)
- description(描述)
- source(来源)

对每个关系返回:
- source_entity(源实体)
- relation_type(关系类型)
- target_entity(目标实体)
- evidence(证据)
- confidence_score(置信度分数)

提示2 - 归一化

比较以下实体。
确定它们是否指向:
- 同一实体
- 相关但不同的实体
- 不相关的实体

返回规范名称和解释。
没有明确证据时不要合并实体。

提示3 - 图查询

将用户问题翻译成Cypher查询。
只使用模式中已有的关系。
不要捏造标签或属性。
返回查询和简短逻辑解释。

提示4 - 基于上下文的答案

仅使用检索到的图路径来回答。
对每个结论:
- 识别支持的节点
- 识别关系路径
- 清晰说明不确定性
- 不要从相关性推断因果

提示5 - 图维护

将新事实与现有图比较。
将每个事实分类为:
- 新
- 重复
- 矛盾
- 更新
- 不确定

没有证据时不要覆盖已有事实。

正如微软GraphRAG文档所示——提示在内部处理提取、关系识别、摘要和社区报告生成。提示工程是图工程内部的机制,而非竞争对手。

§ 10

Five businesses you can build on a knowledge graph

1 - Due diligence platform

Corporate reports + founders + investors
+ legal cases + subsidiaries + transactions
↓
Knowledge Graph
↓
Claude
↓
Risk analysis + hidden connections + conflict of interest detection

Clients: investment funds, law firms, banks, M&A consultants. Monthly retainer $2,000-10,000 per client.

2 - Sales intelligence

Contacts + companies + roles
+ previous emails + company problems + product
↓
Knowledge Graph
↓
Who influences the decision
Which objections repeat
Which case study to show this specific client
Where the deal is blocked

3 - Engineering intelligence

GitHub commits + Jira tickets + Linear tasks
↓
Graph of Engineering Work
↓
5x faster incident detection
50% less meeting time
Automatic release notes

LaunchNotes already sells this. The market is every engineering team that uses more than one project management tool.

4 - Research intelligence

Papers + authors + institutions
+ methods + datasets + results + contradictions
↓
Knowledge Graph
↓
Which GraphRAG methods use community detection
On which datasets they were tested
Which papers contradict each other

5 - Personal knowledge OS

Obsidian notes + emails + calendar
+ PDFs + contacts + tasks
↓
Personal Knowledge Graph
↓
Who did I discuss this idea with
Which tasks depend on one person's response
Which decisions contradict previous agreements
What did I promise to do this month

The shift that connects Microsoft, Stanford and Anthropic

Prompt Engineering   |  how to ask the right question
RAG                  |  which document to find
Graph Engineering    |  which entities exist
                     |  how they connect
                     |  which path leads to the answer
                     |  what changes if one node changes

LLM knows words. Knowledge graph knows relationships. The most powerful AI systems appear when both work together.

Microsoft proved this in production with GraphRAG - 18% better accuracy, 85% lower costs. Stanford proved it in research with DSPy, STORM and the scaling laws paper. Anthropic proved it in the LaunchNotes case - 5x faster incident detection, 50% less meeting time.

Three organizations. Three independent paths. One conclusion.

The model finds text. The graph finds reality. Build the graph.

Most developers will keep improving their prompts and wonder why complex questions still give bad answers. A few will spend one weekend building their first knowledge graph and never go back to searching documents.

/ If this was useful - follow, the next one drops here first.

基于知识图谱可以构建的五种业务

1 - 尽职调查平台

公司报告 + 创始人 + 投资者
+ 法律案件 + 子公司 + 交易
↓
知识图谱
↓
Claude
↓
风险分析 + 隐藏关联 + 利益冲突检测

客户:投资基金、律所、银行、并购顾问。每客户月度顾问费$2,000-10,000。

2 - 销售智能

联系人 + 公司 + 角色
+ 历史邮件 + 公司问题 + 产品
↓
知识图谱
↓
谁影响决策
哪些反对意见重复出现
对该客户应展示哪个案例
交易卡在哪个环节

3 - 工程智能

GitHub提交 + Jira工单 + Linear任务
↓
工程工作图
↓
事件检测快5倍
会议时间减少50%
自动发布说明

LaunchNotes已销售此产品。市场是每个使用超过一个项目管理工具的工程团队。

4 - 研究智能

论文 + 作者 + 机构
+ 方法 + 数据集 + 结果 + 矛盾
↓
知识图谱
↓
哪些GraphRAG方法使用了社区检测
在哪些数据集上测试
哪些论文相互矛盾

5 - 个人知识操作系统

Obsidian笔记 + 邮件 + 日历
+ PDF + 联系人 + 任务
↓
个人知识图谱
↓
我和谁讨论过这个想法
哪些任务依赖某个人的回复
哪些决策与先前协议矛盾
我这个月承诺了什么

连接微软、斯坦福和Anthropic的转变

提示工程   |  如何提出正确的问题
RAG        |  要查找哪个文档
图工程     |  存在哪些实体
          |  它们如何连接
          |  哪条路径通向答案
          |  如果某个节点变化会发生什么

LLM知道单词。知识图谱知道关系。最强大的AI系统出现在两者协同工作时。

微软通过GraphRAG在生产中证明了这一点——准确率提高18%,成本降低85%。斯坦福通过DSPy、STORM和缩放定律论文在研究上证明了这一点。Anthropic通过LaunchNotes案例证明了这一点——事件检测快5倍,会议时间减少50%。

三个组织,三条独立路径,一个结论。

模型找到文本。图找到现实。构建图。

大多数开发者会继续改进提示,并对复杂问题仍然给出糟糕答案感到困惑。少数人会花一个周末构建自己的第一个知识图谱,再也不会回头搜索文档。

/ 如果本文有用——关注我,下一篇优先在此发布。

打开原文 ↗