Skip to content

Commit b0efc80

Browse files
committed
perf:调整文档结构
1 parent 0f95757 commit b0efc80

File tree

3 files changed

+276
-58
lines changed

3 files changed

+276
-58
lines changed

docs/.vuepress/config.js

Lines changed: 61 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,6 +1108,7 @@ module.exports = {
11081108
sidebarDepth: 0,
11091109
children: [
11101110
"02-领域驱动设计DDD在B端营销系统的实践",
1111+
"04-DDD设计流程,以业务案例解读",
11111112
"09-DDD在大厂交易系统演进的应用",
11121113
]
11131114
},
@@ -1356,41 +1357,44 @@ module.exports = {
13561357
}, ],
13571358

13581359
"/md/AI/": [{
1359-
title: "GPT发展",
1360-
collapsable: false,
1361-
sidebarDepth: 0,
1362-
children: [
1363-
"Claude3到底多强",
1364-
"GPTs推荐",
1365-
"ChatGPT为啥不用Websocket而是EventSource?",
1366-
]
1367-
},
1368-
{
1369-
title: "机器学习",
1370-
collapsable: false,
1371-
sidebarDepth: 0,
1372-
children: [
1373-
"01-人工智能概要",
1374-
"MapReduce分治思想",
1375-
"05-开发环境安装",
1376-
]
1377-
},
1378-
{
1379-
title: "LLM应用开发",
1380-
collapsable: false,
1381-
sidebarDepth: 0,
1382-
children: [
1383-
"AI 大模型企业应用实战",
1384-
"00-为什么要学习大模型",
1385-
"01-大语言模型发展",
1386-
"02-domestic-and-international-llm-multi-model-strong-applications",
1387-
"03-large-language-model-flaws",
1388-
"04-ai-ecosystem-industry-analysis",
1389-
"05-ai-era-turning-point-for-app-developers",
1390-
"06-智能体项目案例",
1391-
]
1392-
},
1393-
{
1360+
title: "AI最新发展",
1361+
collapsable: false,
1362+
sidebarDepth: 0,
1363+
children: [
1364+
"Claude3到底多强",
1365+
"GPTs推荐",
1366+
"ChatGPT为啥不用Websocket而是EventSource?",
1367+
]
1368+
}, ],
1369+
1370+
"/md/AI/": [{
1371+
title: "机器学习",
1372+
collapsable: false,
1373+
sidebarDepth: 0,
1374+
children: [
1375+
"01-人工智能概要",
1376+
"MapReduce分治思想",
1377+
"05-开发环境安装",
1378+
]
1379+
}, ],
1380+
1381+
"/md/AI/": [{
1382+
title: "LLM应用开发",
1383+
collapsable: false,
1384+
sidebarDepth: 0,
1385+
children: [
1386+
"AI 大模型企业应用实战",
1387+
"00-为什么要学习大模型",
1388+
"01-大语言模型发展",
1389+
"02-domestic-and-international-llm-multi-model-strong-applications",
1390+
"03-large-language-model-flaws",
1391+
"04-ai-ecosystem-industry-analysis",
1392+
"05-ai-era-turning-point-for-app-developers",
1393+
"06-智能体项目案例",
1394+
]
1395+
}, ],
1396+
1397+
"/md/AI/": [{
13941398
title: "LangChain",
13951399
collapsable: false,
13961400
sidebarDepth: 0,
@@ -1416,27 +1420,29 @@ module.exports = {
14161420
"04-prompt-helping-llm-understand-knowledge",
14171421
]
14181422
},
1419-
{
1420-
title: "Agent",
1421-
collapsable: false,
1422-
sidebarDepth: 0,
1423-
children: [
1424-
"01-what-are-agents",
1425-
"02-how-langchain-agents-are-implemented",
1426-
"what-is-zero-shot-one-shot-few-shot-learning",
1427-
"04-how-to-add-memory-in-langchain-agents",
1428-
"05-how-to-enable-memory-sharing-between-agent-and-tool",
1429-
"06-how-to-use-langchain-built-in-tools",
1430-
"07-lcel-langchain-expression-language",
1431-
"08-ali-tongyi-qianwen-openai-compatible-solution",
1432-
"09-lcel-chain-and-prompt-implementation",
1433-
"10-ali-tongyi-qianwen-status-codes-explanation",
1434-
"11-lcel-memory-addition-method",
1435-
"12-lcel-agent-core-components",
1436-
"13-最佳开发实践",
1437-
]
1438-
},
14391423
],
1424+
1425+
"/md/AI/": [{
1426+
title: "Agent",
1427+
collapsable: false,
1428+
sidebarDepth: 0,
1429+
children: [
1430+
"01-what-are-agents",
1431+
"02-how-langchain-agents-are-implemented",
1432+
"what-is-zero-shot-one-shot-few-shot-learning",
1433+
"04-how-to-add-memory-in-langchain-agents",
1434+
"05-how-to-enable-memory-sharing-between-agent-and-tool",
1435+
"06-how-to-use-langchain-built-in-tools",
1436+
"07-lcel-langchain-expression-language",
1437+
"08-ali-tongyi-qianwen-openai-compatible-solution",
1438+
"09-lcel-chain-and-prompt-implementation",
1439+
"10-ali-tongyi-qianwen-status-codes-explanation",
1440+
"11-lcel-memory-addition-method",
1441+
"12-lcel-agent-core-components",
1442+
"13-最佳开发实践",
1443+
]
1444+
}, ],
1445+
14401446
"/md/design/": [{
14411447
title: "重构",
14421448
collapsable: false,

docs/md/AI/01-what-are-agents.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# 01-什么是agents?
1+
# 01-what-are-agents
22

33
## 0 前言
44

5-
6-
75
![](https://my-img.javaedge.com.cn/javaedge-blog/2024/06/c21f39493b86912da7fdb049694e5b9b.png)
86

97
- 无需为不同任务使用单独软件

0 commit comments

Comments
 (0)