gpt4 book ai didi

node.js - 在选择提示中将选项列表呈现为按钮的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 01:40:13 24 4
gpt4 key购买 nike

我试图以按钮的形式向用户提供可供选择的选项,如下所示:

builder.Prompts.choice( session, "Do you want to raise a ticket for this problem?", "Yes|No",
{
maxRetries: 3,
retryPrompt: 'Sorry, that is not a valid input'
},
{
listStyle: builder.ListStyle.button
}
);

但是,网络聊天 channel 显示如下:

enter image description here

显然,它的完成方式有问题,但我不确定是什么。如何正确使用带按钮的选择提示?

最佳答案

您需要重新构建提示选项,使其类似于以下示例。在您的代码中,您将选项分为两个参数。因此,该方法只能看到您的第一组选项,并且默认为一个简单的列表。进行此更改,它将正确呈现。

builder.Prompts.choice(session, "Do you want to raise a ticket for this problem?", "Yes|No",
{
maxRetries: 3,
retryPrompt: 'Sorry, that is not a valid input',
listStyle: builder.ListStyle.button
}
);

关于node.js - 在选择提示中将选项列表呈现为按钮的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53163672/

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