From 0140166322a7dfa30544b634fc6ba0433687b721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BC=AF=E5=BF=97?= Date: Wed, 23 Oct 2024 10:52:57 +0800 Subject: [PATCH] feat:to #60105042 fix passthrough --- .../passthrough_mode/java/open_passthrough.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/explore/tutorials/assistant_ability/passthrough_mode/java/open_passthrough.md b/docs/explore/tutorials/assistant_ability/passthrough_mode/java/open_passthrough.md index b35863bd..9a213364 100644 --- a/docs/explore/tutorials/assistant_ability/passthrough_mode/java/open_passthrough.md +++ b/docs/explore/tutorials/assistant_ability/passthrough_mode/java/open_passthrough.md @@ -14,8 +14,9 @@ import TabItem from '@theme/TabItem'; ### 步骤二: 编写接口的 Yaml 描述文件,我们这里以天气查询为例 :::caution注意事项 -1. 使用直通模式,所有的参数都必须只能通过 x-dingtalk-context 来从上下文中获取。 -2. 描述文件中只能定义一个接口。 +1. 使用直通模式,所有的参数都必须且只能附带 [x-dingtalk-context](https://open.dingtalk.com/document/ai-dev/actions-advanced-settings#b6788d573apjp) 属性来从上下文中获取,不能含有需要大模型提取的参数。 +2. AI 助理下面只能定义一个描述文件且只能定义一个接口。 +3. 关闭或删除智能对话技能。 :::