gpt4 book ai didi

botframework - 在Microsoft bot框架中,如何包含星级反馈

转载 作者:行者123 更新时间:2023-12-02 03:24:01 27 4
gpt4 key购买 nike

我正在使用微软机器人框架。我需要在我的代码中实现星级反馈机制。就像选择星星一样,应该提交机器人的评级。谁可以帮我这个事?或者有什么建议吗?

最佳答案

您可以通过使列的行为类似于提交按钮,使用 AdaptiveCard 创建星级反馈卡。首先,将一个列集添加到具有所需列数的 AdaptiveCard - 每列将对应一个评级。然后,在每一列中,您可以添加星星或其他物体的图像以及描述该评级的文本字段。接下来,向每列添加提交操作,并在数据字段中添加响应值。最后,您可以渲染卡片并将其作为附件发送给用户。当用户单击某一列时,它会将数据字段中的值作为来自用户的消息发送。有关示例,请参阅下面的 AdaptiveCard JSON 和渲染卡的屏幕截图。

屏幕截图

enter image description here

JSON 自适应卡

{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"color": "Accent",
"text": "Rate your experience!"
},
{
"type": "TextBlock",
"separator": true,
"text": "Please rate your experience! Your feedback is very appreciated and will help improve your experience in the future. ",
"wrap": true
},
{
"type": "ColumnSet",
"spacing": "Medium",
"columns": [
{
"type": "Column",
"selectAction": {
"type": "Action.Submit",
"data": "awful"
},
"items": [
{
"type": "Image",
"horizontalAlignment": "Center",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg"
},
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"text": "Awful"
}
],
"width": "stretch"
},
{
"type": "Column",
"selectAction": {
"type": "Action.Submit",
"data": "bad"
},
"items": [
{
"type": "Image",
"horizontalAlignment": "Center",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg"
},
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"text": "Bad"
}
],
"width": "stretch"
},
{
"type": "Column",
"selectAction": {
"type": "Action.Submit",
"data": "ok"
},
"items": [
{
"type": "Image",
"horizontalAlignment": "Center",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg"
},
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"text": "Ok"
}
],
"width": "stretch"
},
{
"type": "Column",
"selectAction": {
"type": "Action.Submit",
"data": "good"
},
"items": [
{
"type": "Image",
"horizontalAlignment": "Center",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg"
},
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"text": "Good"
}
],
"width": "stretch"
},
{
"type": "Column",
"selectAction": {
"type": "Action.Submit",
"data": "terrific"
},
"items": [
{
"type": "Image",
"horizontalAlignment": "Center",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg"
},
{
"type": "TextBlock",
"horizontalAlignment": "Center",
"text": "Terrific"
}
],
"width": "stretch"
}
]
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}

关于botframework - 在Microsoft bot框架中,如何包含星级反馈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53943396/

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