-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
94 lines (88 loc) · 3.22 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
site_name: 【布客】LangChain 中文翻译
site_url: https://langchain.apachecn.org
# Repository
repo_name: apachecn/langchain-doc-zh
repo_url: https://github.com/apachecn/langchain-doc-zh
theme:
name: material
language: zh
custom_dir: themes_material
logo: https://data.apachecn.org/img/logo/logo_green.png
analytics:
gtag: G-8DP4GX97XY
features:
- content.code.copy
- content.action.edit
- content.action.view
- navigation.footer
icon:
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- admonition
- tables
- attr_list
- md_in_html
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:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
nav:
- "langchain 中文文档": "index.md"
- "Get started":
- "Introduction": "docs/get_started/index.md"
- "Quickstart": "docs/get_started/quickstart.md"
- "Installation": "docs/get_started/installation.md"
- "Use cases":
- "Introduction": "docs/use_cases/index.md"
- "Q&A with RAG": "docs/use_cases/question_answering.md"
- "Extracting structured output": "docs/use_cases/extraction.md"
- "Chatbots": "docs/use_cases/chatbots.md"
- "Tool use and agents": "docs/use_cases/tool_use.md"
- "Query analysis": "docs/use_cases/query_analysis.md"
- "Q&A over SQL + CSV": "docs/use_cases/sql.md"
- "More": "docs/use_cases/graph.md"
- "Expression Language":
- "Introduction": "docs/expression_language/index.md"
- "Get started": "docs/expression_language/get_started.md"
- "Runnable interface": "docs/expression_language/interface.md"
- "Primitives": "docs/expression_language/primitives.md"
- "Advantages of LCEL": "docs/expression_language/why.md"
- "Streaming": "docs/expression_language/streaming.md"
- "Add message history (memory)": "docs/expression_language/how_to/message_history.md"
- "More": "docs/expression_language/how_to/routing.md"
- "Ecosystem":
- "🦜🛠️ LangSmith":
- "Introduction": "docs/langsmith/index.md"
- "LangSmith Walkthrough": "docs/langsmith/walkthrough.md"
- "🦜🕸️LangGraph": "docs/langgraph.md"
- "🦜️🏓 LangServe": "docs/langserve.md"
- "Security": "docs/security.md"
- "贡献指南": "contrib.md"
- "关于我们": "https://www.apachecn.org/about"
- "加入我们": "https://www.apachecn.org/join"
- "中文资源合集": "https://docs.apachecn.org"