Skip to content

Commit

Permalink
feat: 添加直通模式介绍
Browse files Browse the repository at this point in the history
Signed-off-by: 金喜 <[email protected]>
  • Loading branch information
alijinxi committed Nov 7, 2024
1 parent 6d19e5b commit b64218c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ sidebar_position: 1

本文以及接下来的步骤指引,介绍如何通过直通模式模式开发 AI 助理自定义能力。

**直通模式定义**:钉钉 AI 助理在技术上是一个智能体(Agent),Agent在运行中需要做规划推理(Planning),直通模式是一种通道,钉钉 Agent 框架层不做规划推理,尽透传用户请求到开发者自己的服务。

**适用场景**:助理开发已经通过其他框架或者技术体系,创建自己的Agent,希望将这个 Agent 接入到钉钉中,给钉钉内组织员工提供服务。例如通过 LangChain 等框架开发自定义 Agent,然后通过直通模式接入到钉钉中来。

## 功能

通过这个教程,你可以学会
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import TabItem from '@theme/TabItem';
# 4. 开发直通模式服务


在本章节中,将会介绍如何用 Python 开发一个聊天机器人服务,实现基本的介绍和发送消息能力。
在本章节中,将会介绍如何用 Python 开发一个 AI 助理的技能,并应用于直通模式。
该代码是基于钉钉 Stream 模式实现更安全更便捷的实现方式,如果需要采用 HTTP 模式,可以基于 YAML 中接口定义自行实现即可。考虑到开发者都能够熟练开发 HTTP 服务,本文档不做赘述。

本教程的完整代码可以在 [GitHub 仓库](https://github.com/open-dingtalk/dingtalk-tutorial-python)中获取,你也可以跳过本文中构建步骤,直接从 GitHub 中 clone 相关代码。

Expand Down

0 comments on commit b64218c

Please sign in to comment.