gpt4 book ai didi

python - 使用python将自适应卡添加到bot框架

转载 作者:行者123 更新时间:2023-11-28 17:06:46 25 4
gpt4 key购买 nike

我正在尝试使用 python 中的 bot 框架示例,这里是 https://github.com/Microsoft/botbuilder-python现在我想在响应中添加一个简单的自适应卡,我相信这是它说 await context.send_activity(response) 的部分,但我无法附加卡。我从文档示例中抓取了卡片:

{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Publish Adaptive Card schema",
"weight": "bolder",
"size": "medium"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "auto",
"items": [
{
"type": "Image",
"url": "https://pbs.twimg.com/profile_images/3647943215/d7f12830b3c17a5a9e4afcc370e3a37e_400x400.jpeg",
"size": "small",
"style": "person"
}
]
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "Matt Hidinger",
"weight": "bolder",
"wrap": true
},
{
"type": "TextBlock",
"spacing": "none",
"text": "Created {{DATE(2017-02-14T06:08:39Z, SHORT)}}",
"isSubtle": true,
"wrap": true
}
]
}
]
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Now that we have defined the main rules and features of the format, we need to produce a schema and publish it to GitHub. The schema will be the starting point of our reference documentation.",
"wrap": true
},
{
"type": "FactSet",
"facts": [
{
"title": "Board:",
"value": "Adaptive Card"
},
{
"title": "List:",
"value": "Backlog"
},
{
"title": "Assigned to:",
"value": "Matt Hidinger"
},
{
"title": "Due date:",
"value": "Not set"
}
]
}
]
}
],
"actions": [
{
"type": "Action.ShowCard",
"title": "Set due date",
"card": {
"type": "AdaptiveCard",
"body": [
{
"type": "Input.Date",
"id": "dueDate"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "OK"
}
]
}
},
{
"type": "Action.ShowCard",
"title": "Comment",
"card": {
"type": "AdaptiveCard",
"body": [
{
"type": "Input.Text",
"id": "comment",
"isMultiline": true,
"placeholder": "Enter your comment"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "OK"
}
]
}
}
]}

我找不到将卡片附加到 python 响应的方法。

最佳答案

您需要创建 Attachment对于发送给用户的事件:

ADAPTIVE_CARD_ATTACHMENT = Attachment(content_type='application/vnd.microsoft.card.adaptive',
content=ADAPTIVE_CARD)

在此之后,您可以像这样将其附加到您的响应事件中:

response.attachments = [ADAPTIVE_CARD_ATTACHMENT]

或者您可以在创建响应时添加它:

response = Activity(type='message', attachments=[ADAPTIVE_CARD_ATTACHMENT])

注意:为简洁起见,我省略了创建有效事件所需的额外代码,您仍然需要添加字段,例如 channel_idrecipient from_property

关于python - 使用python将自适应卡添加到bot框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50453157/

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