-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathmkdocs.yml
More file actions
271 lines (264 loc) · 10.8 KB
/
mkdocs.yml
File metadata and controls
271 lines (264 loc) · 10.8 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# Hyper-Extract Documentation Configuration
site_name: Hyper-Extract
site_description: LLM-powered knowledge extraction framework
site_author: Yifan Feng
site_url: https://yifanfeng97.github.io/Hyper-Extract/
repo_name: yifanfeng97/hyper-extract
repo_url: https://github.com/yifanfeng97/hyper-extract
edit_uri: edit/main/docs/
hooks:
- docs_hooks.py
theme:
name: material
language: en
features:
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- navigation.path
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
palette:
primary: purple
accent: deep purple
logo: assets/logo/logo-icon-white.svg
favicon: assets/logo/logo-icon.svg
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [hyperextract]
options:
docstring_style: google
show_source: false
show_root_heading: true
show_object_full_path: false
show_category_heading: true
show_if_no_docstring: false
members_order: source
group_by_category: true
filters:
- "!^_" # Hide private methods
merge_init_into_class: false
show_signature_annotations: true
- i18n:
docs_structure: folder
fallback_to_default: true
languages:
- locale: en
name: English
default: true
build: true
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- getting-started/installation.md
- getting-started/cli-quickstart.md
- getting-started/python-quickstart.md
- CLI Guide:
- cli/index.md
- cli/workflow.md
- Commands:
- cli/commands/parse.md
- cli/commands/feed.md
- cli/commands/show.md
- cli/commands/build-index.md
- cli/commands/search.md
- cli/commands/talk.md
- cli/commands/info.md
- cli/commands/list.md
- cli/commands/config.md
- cli/configuration.md
- Python SDK:
- python/index.md
- python/quickstart.md
- python/core-concepts.md
- Guides:
- python/guides/using-templates.md
- python/guides/using-methods.md
- python/guides/working-with-autotypes.md
- python/guides/provider-configuration.md
- python/guides/custom-templates.md
- python/guides/search-and-chat.md
- python/guides/incremental-updates.md
- python/guides/saving-loading.md
- API Reference:
- Template API: python/api-reference/template.md
- Auto-Types:
- Base Type: python/api-reference/autotypes/base.md
- Record Types: python/api-reference/autotypes/structures.md
- Graph Types: python/api-reference/autotypes/graphs.md
- Methods:
- Registry: python/api-reference/methods/registry.md
- Typical Methods: python/api-reference/methods/typical.md
- RAG Methods: python/api-reference/methods/rag.md
- Concepts:
- concepts/index.md
- concepts/architecture.md
- concepts/provider-system.md
- concepts/autotypes.md
- concepts/methods.md
- concepts/templates-format.md
- Templates:
- templates/index.md
- Choosing:
- templates/how-to-choose.md
- templates/choosing/by-task.md
- templates/choosing/by-output.md
- Examples:
- templates/examples/research-paper.md
- templates/examples/financial-report.md
- templates/examples/legal-contract.md
- Reference:
- templates/reference/overview.md
- General: templates/reference/general.md
- Finance: templates/reference/finance.md
- Legal: templates/reference/legal.md
- Medical: templates/reference/medicine.md
- TCM: templates/reference/tcm.md
- Industry: templates/reference/industry.md
- Tutorials:
- tutorials/index.md
- Research Assistant:
- tutorials/research-assistant/index.md
- tutorials/research-assistant/step1-extract.md
- tutorials/research-assistant/step2-search.md
- tutorials/research-assistant/step3-chat.md
- Knowledge Base:
- tutorials/knowledge-base/index.md
- tutorials/knowledge-base/step1-setup.md
- tutorials/knowledge-base/step2-ingest.md
- tutorials/knowledge-base/step3-query.md
- Document Analysis: tutorials/document-analysis/index.md
- Resources:
- resources/index.md
- resources/faq.md
- resources/troubleshooting.md
- resources/contributing.md
- locale: zh
name: 中文
build: true
nav:
- 首页: zh/index.md
- 入门指南:
- zh/getting-started/index.md
- zh/getting-started/installation.md
- zh/getting-started/cli-quickstart.md
- zh/getting-started/python-quickstart.md
- CLI 指南:
- zh/cli/index.md
- zh/cli/workflow.md
- 命令详解:
- zh/cli/commands/parse.md
- zh/cli/commands/feed.md
- zh/cli/commands/show.md
- zh/cli/commands/build-index.md
- zh/cli/commands/search.md
- zh/cli/commands/talk.md
- zh/cli/commands/info.md
- zh/cli/commands/list.md
- zh/cli/commands/config.md
- zh/cli/configuration.md
- Python SDK:
- zh/python/index.md
- zh/python/quickstart.md
- zh/python/core-concepts.md
- 使用指南:
- zh/python/guides/using-templates.md
- zh/python/guides/using-methods.md
- zh/python/guides/working-with-autotypes.md
- zh/python/guides/provider-configuration.md
- zh/python/guides/custom-templates.md
- zh/python/guides/search-and-chat.md
- zh/python/guides/incremental-updates.md
- zh/python/guides/saving-loading.md
- API 参考:
- Template API: zh/python/api-reference/template.md
- 自动类型:
- 基础类型: zh/python/api-reference/autotypes/base.md
- 记录类型: zh/python/api-reference/autotypes/structures.md
- 图谱类型: zh/python/api-reference/autotypes/graphs.md
- 方法:
- 注册表: zh/python/api-reference/methods/registry.md
- 典型方法: zh/python/api-reference/methods/typical.md
- RAG 方法: zh/python/api-reference/methods/rag.md
- 核心概念:
- zh/concepts/index.md
- zh/concepts/architecture.md
- zh/concepts/provider-system.md
- zh/concepts/autotypes.md
- zh/concepts/methods.md
- zh/concepts/templates-format.md
- 模板库:
- zh/templates/index.md
- 选择指南:
- 如何选择: zh/templates/how-to-choose.md
- 按任务选择: zh/templates/choosing/by-task.md
- 按输出类型选择: zh/templates/choosing/by-output.md
- 使用示例:
- 研究论文分析: zh/templates/examples/research-paper.md
- 财报分析: zh/templates/examples/financial-report.md
- 合同分析: zh/templates/examples/legal-contract.md
- 参考:
- 模板概览: zh/templates/reference/overview.md
- 通用: zh/templates/reference/general.md
- 金融: zh/templates/reference/finance.md
- 法律: zh/templates/reference/legal.md
- 医学: zh/templates/reference/medicine.md
- 中医: zh/templates/reference/tcm.md
- 工业: zh/templates/reference/industry.md
- 教程:
- zh/tutorials/index.md
- 研究助手:
- zh/tutorials/research-assistant/index.md
- zh/tutorials/research-assistant/step1-extract.md
- zh/tutorials/research-assistant/step2-search.md
- zh/tutorials/research-assistant/step3-chat.md
- 知识库:
- zh/tutorials/knowledge-base/index.md
- zh/tutorials/knowledge-base/step1-setup.md
- zh/tutorials/knowledge-base/step2-ingest.md
- zh/tutorials/knowledge-base/step3-query.md
- 文档分析:
- zh/tutorials/document-analysis/index.md
- 资源:
- zh/resources/index.md
- zh/resources/faq.md
- zh/resources/troubleshooting.md
- zh/resources/contributing.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/yifanfeng97/hyper-extract
version:
provider: mike
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- tables
- toc:
permalink: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg