-
Notifications
You must be signed in to change notification settings - Fork 52
/
mkdocs.yml
122 lines (115 loc) · 3.67 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
site_name: ERNIE Bot Agent
repo_url: https://github.com/PaddlePaddle/ERNIE-SDK/
repo_name: ERNIE-Bot-Agent
site_url: https://ernie-bot-agent.readthedocs.io/zh-cn/latest/
site_description: provides an easy-to-use Chinese agent builder tool suite.
nav:
- 快速开始:
- 安装和鉴权: 'quickstart/preparation.md'
- 构建一个简单智能体: 'quickstart/agent.md'
- 使用 Tool: 'quickstart/use-tool.md'
- 核心模块:
- Agents: 'modules/agents.md'
- Chat Models: 'modules/chat_models.md'
- Tools: 'modules/tools.md'
- File: 'modules/file.md'
- Memory: 'modules/memory.md'
- Message: 'modules/message.md'
- Retrieval: 'modules/retrieval.md'
- 教程:
- 信息(Message): "cookbooks/agent/message.ipynb"
- 模型(Chat Models): "cookbooks/agent/chat_models.ipynb"
- 工具(Tools): "cookbooks/agent/tools_intro.ipynb"
- 自定义本地工具(Local Tool): "cookbooks/agent/local_tool.ipynb"
- 自定义远程工具(Remote Tool): "cookbooks/agent/remote_tool.ipynb"
- 记忆(Memory)机制详解: "cookbooks/agent/memory.ipynb"
- 智能体(Agent)运行流程详解: "cookbooks/agent/function_agent.ipynb"
- 在智能体中使用langchain: "cookbooks/agent/langchain_function_agent_with_retrieval.ipynb"
- 在智能体中使用llama_index: "cookbooks/agent/llama_index_function_agent_with_retrieval.ipynb"
- 使用langchain extension: "cookbooks/agent/how_to_use_langchain_extension.ipynb"
- API 文档:
- Agents: "package/erniebot_agent/agents.md"
- Chat Models: "package/erniebot_agent/chat_models.md"
- Tools: "package/erniebot_agent/tools.md"
- File: "package/erniebot_agent/file.md"
- Memory: "package/erniebot_agent/memory.md"
- Message: "package/erniebot_agent/message.md"
- Retrieval: "package/erniebot_agent/retrieval.md"
- ERNIE-Bot:
- 使用文档:
- 预备步骤:
- sdk/README.md
- sdk/installation.md
- sdk/authentication.md
- sdk/configuration.md
- sdk/models.md
- 使用指南:
- sdk/guides/chat_completion.md
- sdk/guides/embedding.md
- sdk/guides/image.md
- sdk/guides/function_calling.md
- API文档:
- sdk/api_reference/chat_completion.md
- sdk/api_reference/embedding.md
- sdk/api_reference/image.md
- Blog:
- blog/index.md
copyright: Copyright © 2023 - Now PaddlePaddle Community
theme:
language: zh
name: material
favicon: img/favicon.png
features:
- navigation.tabs.sticky
- toc.integrate
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
palette:
primary: black
accent: pink
font:
text: Noto Serif Simplified Chinese
code: Noto Serif Simplified Chinese
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- pymdownx.details
- admonition
- pymdownx.snippets:
check_paths: true
- pymdownx.tabbed
- toc:
permalink: true
plugins:
- blog
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- search
- mkdocs-jupyter:
ignore_h1_titles: True
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_bases: false
show_root_heading: true
paths: [erniebot-agent/src]
selection:
filters:
- "^__init__$" # but always include __init__ modules and methods