generated from datawhalechina/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathmkdocs.yml
164 lines (150 loc) · 4.25 KB
/
mkdocs.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Project information
site_name: Hugging-multi-agent
site_author: Azula
site_description: 全面深入的agent学习开发指南
# Configuration
theme:
name: material
custom_dir: overrides
language: zh
features:
# - announce.dismiss
- content.action.edit
# - content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.prune
# - navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.footer
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: white
# accent: indigo
toggle:
icon: material/theme-light-dark
name: Switch to dark mode
- scheme: slate
primary: grey
# accent: indigo
toggle:
icon: material/theme-light-dark
name: Switch to light mode
font:
text: Noto Sans SC
code: Fira Code
favicon: assets/images/logo.jpg
logo: assets/images/logo.jpg
icon:
logo: logo
repo: fontawesome/brands/github
edit: fontawesome/regular/pen-to-square
extra:
alternate:
- name: 中文
link: /
lang: zh
- name: English
link: /en/
lang: en
social:
- icon: fontawesome/brands/github
link: https://github.com/datawhalechina/hugging-multi-agent
generator: false
status:
new: 最近添加
# Plugins
plugins:
- search
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: none
width: 100%
height: auto
zoomable: true
draggable: false
auto_caption: false
caption_position: bottom
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
# - pymdownx.emoji:
# emoji_index: !!python/name:materialx.emoji.twemoji
# emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
# - pymdownx.magiclink:
# repo_url_shorthand: true
# user: squidfunk
# repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# - javascripts/katex.js
# - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
# - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- stylesheets/extra.css
# - https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
# Page tree
nav:
- 第 1 章 获取MetaGPT:
# [icon: material/book-open-outline]
- chapter1/index.md
- 1.1 获取MetaGPT: chapter1/获取MetaGPT.md
- 第 2 章 智能体综述及多智能体框架介绍:
- chapter2/index.md
- 2.1 AI Agent体系介绍: chapter2/AIAgent知识体系结构.md
- 2.2 多智能体框架介绍: chapter2/多智能体框架介绍.md
- 第 3 章 单智能体开发:
- chapter3/index.md
- 3.1 Agent概念概述: chapter3/Agent概念概述.md
- 3.2 RoleContext对象分析: chapter3/RoleContext对象分析.md
- 3.3 实现一个单动作Agent: chapter3/实现一个单动作Agent.md
- 3.4 实现一个多动作Agent: chapter3/实现一个多动作Agent.md
- 3.5 实现一个更复杂的Agent:技术文档助手: chapter3/实现一个更复杂的Agent:技术文档助手.md
- 3.6 单智能体案例OSS-订阅智能体: chapter3/单智能体案例OSS-订阅智能体.md
- 3.7 智能体开发作业: chapter3/智能体开发作业.md
- 参考文献:
- chapter_reference/index.md