我使用 Microsoft Azure 机器人服务和 LUIS 创建了一个聊天机器人。使用经过 LUIS 培训的机器人,我可以接收短信。我已将机器人连接到 Skype 频道。
我不知道如何返回图像附件作为对消息的答复。
我听说一些 Microsoft bot 框架可以将图像作为附件发送,但我不确定 Azure bot 服务。
示例代码:
var recognizer = new builder.LuisRecognizer(LuisModelUrl);
var intents = new builder.IntentDialog({ recognizers: [recognizer] })
.matches('**Greetings**', (session, args) => {session.send('**Hi! Welcome**');});
bot.dialog('/', intents);
我的情况:
我想在下面的 URL 图片中附上“嗨!欢迎'消息与我的意图'问候'相匹配。
ContentURL:“ https://img.clipartfest.com/13e01fd74f423c39c4af7dcc8a7b8455_animated-welcome-sign-animated-welcome-clip-art-images_1300-899.jpeg ”,
ContentType = "图像/jpeg"
我不知道如何以及在我的代码中添加上述内容 URL 以向邮件发送附件。
有人可以帮我吗?