gpt4 book ai didi

azure - MS Teams 上的自适应卡

转载 作者:行者123 更新时间:2023-12-03 06:18:37 25 4
gpt4 key购买 nike

我使用 Botpress 创建了一个机器人,并通过 Azure 将其连接到 MS Teams。我现在想在 Teams 中发送一张自适应卡。我发现你可以在团队中发送一张自适应卡,如下所示:https://github.com/botpress/solutions/blob/master/custom%20solutions/Send%20adaptive%20cards%20using%20teams/actions/sendAdaptativeCard.js 。我现在的问题是,我没有收到任何用户输入,只有 Botpress 无法读取的对象。我也已经在 Botpress 论坛中展开了讨论。参见这里:https://github.com/botpress/botpress/discussions/12600不幸的是,我自己一事无成,无法得到答案。这里有人知道如何从 Botpress 中的自适应卡读取用户输入吗?我是聊天机器人的新手,微软的文档非常详细,但也很令人困惑。如果有任何帮助,我将非常感激。

最诚挚的问候伊娃

最佳答案

我厌倦了在 MS Teams 机器人中使用自适应卡的下面的代码。

示例 Javascript 代码:-

const  card = {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Hello, world!",
"size": "large"
}
]
};
const message = {
type: "message",
text: "Here's an adaptive card:",
attachments: [CardFactory.adaptiveCard(card)]
};
await context.sendActivity(message);
break;

  • 实现自适应卡的另一种方法是创建 Json 文件。

enter image description here

enter image description here

输出:

enter image description here

引用:

关于azure - MS Teams 上的自适应卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76044685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com