-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (76 loc) · 2.38 KB
/
Copy pathmkdocs.yml
File metadata and controls
80 lines (76 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
site_name: Jan 源码拆解
site_description: 基于 jan-main 0.8.4 本地快照的 Jan 桌面 AI 应用架构与源码精读
site_author: Hanqing
site_url: https://hanqing.github.io/jan-source-notes/
repo_url: https://github.com/Hanqing/jan-source-notes
repo_name: Hanqing/jan-source-notes
edit_uri: edit/main/docs/
theme:
name: material
language: zh
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.action.edit
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: 切换到深色模式
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: 切换到浅色模式
font:
text: Noto Sans SC
code: JetBrains Mono
plugins:
- search
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
nav:
- 首页: index.md
- 阅读指南: chapters/00-reading-guide.md
- Part I · 看懂全局:
- 开篇总览: chapters/01-overview.md
- Monorepo 与运行时拓扑: chapters/02-topology.md
- 领域模型与持久化: chapters/03-domain-storage.md
- Part II · 核心引擎:
- Core 与扩展系统: chapters/04-core-extension.md
- 本地模型与推理引擎: chapters/05-inference.md
- 一次聊天请求的完整旅程: chapters/06-chat-pipeline.md
- OpenAI 兼容 API 与远程 Provider: chapters/07-api-proxy.md
- Part III · 能力边界:
- MCP、工具与 RAG: chapters/08-tools-mcp-rag.md
- WebView UI、ServiceHub 与状态: chapters/09-web-ui.md
- 模型下载、后端更新与跨平台: chapters/10-model-lifecycle.md
- Part IV · 工程取舍:
- 安全、配置、升级与 CLI: chapters/11-security-ops.md
- 测试、演进风险与设计启示: chapters/12-engineering-takeaways.md
- 附录:
- 源码导航表: chapters/source-map.md
- 术语表: chapters/glossary.md