Skip to content

Commit 6f5a0ce

Browse files
Grivnclaude
andcommitted
Switch all generated diagrams from PNG to JPG for consistency
All architecture diagrams (01-10 + llm-supervised-concept) now use JPG format. Updated README, Chinese README, and visualize_graph.py output path. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3eb6cec commit 6f5a0ce

7 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LLM agents forget everything between sessions. Context compaction drops critical
1717
Mnemon gives your agent persistent, cross-session memory — with a single binary and one setup command.
1818

1919
<p align="center">
20-
<img src="docs/diagrams/10-knowledge-graph.png" width="720" alt="Knowledge Graph — 87 insights connected by temporal, entity, semantic, and causal edges" />
20+
<img src="docs/diagrams/10-knowledge-graph.jpg" width="720" alt="Knowledge Graph — 87 insights connected by temporal, entity, semantic, and causal edges" />
2121
<br />
2222
<sub>A real knowledge graph built by Mnemon — 87 insights, 2150 edges across four graph types.</sub>
2323
</p>
@@ -37,7 +37,7 @@ This means: **memory management logic moves from prompt to code — deterministi
3737
| **LLM-Supervised** | External supervisor of a standalone binary | Mnemon |
3838

3939
<p align="center">
40-
<img src="docs/diagrams/llm-supervised-concept.png" width="720" alt="LLM-Supervised Architecture — three patterns compared, with detailed Mnemon implementation showing hooks, brain/organ split, and sub-agent delegation" />
40+
<img src="docs/diagrams/llm-supervised-concept.jpg" width="720" alt="LLM-Supervised Architecture — three patterns compared, with detailed Mnemon implementation showing hooks, brain/organ split, and sub-agent delegation" />
4141
<br />
4242
<sub>The LLM-Supervised pattern: hooks drive the lifecycle, the host LLM makes judgment calls, the binary handles deterministic computation.</sub>
4343
</p>
411 KB
Loading
-828 KB
Binary file not shown.
499 KB
Loading
-313 KB
Binary file not shown.

docs/zh/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ LLM 智能体在会话之间会遗忘一切。上下文压缩丢失关键决策
1717
Mnemon 为你的 LLM 提供持久的跨会话记忆 — 只需一个 Go 二进制文件和一条 setup 命令。
1818

1919
<p align="center">
20-
<img src="../diagrams/10-knowledge-graph.png" width="720" alt="知识图谱 — 87 条洞察通过时序、实体、语义和因果边连接" />
20+
<img src="../diagrams/10-knowledge-graph.jpg" width="720" alt="知识图谱 — 87 条洞察通过时序、实体、语义和因果边连接" />
2121
<br />
2222
<sub>Mnemon 构建的真实知识图谱 — 87 条洞察,2150 条边,横跨四种图类型。</sub>
2323
</p>

scripts/visualize_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import numpy as np
1414

1515
DB_PATH = Path.home() / ".mnemon" / "mnemon.db"
16-
OUT_PATH = Path(__file__).resolve().parent.parent / "docs" / "diagrams" / "10-knowledge-graph.png"
16+
OUT_PATH = Path(__file__).resolve().parent.parent / "docs" / "diagrams" / "10-knowledge-graph.jpg"
1717

1818
# ── colour palette ──────────────────────────────────────────────────
1919
CATEGORY_COLOURS = {

0 commit comments

Comments
 (0)