Forum Widgets
Latest Discussions
Using Adaptive Cards to display carousels in Health Bot
Can we attach an array of Adaptive Cards using the Dynamic Card, to display as Carousel? I am trying to do something like below in a Dynamic Card, but it just displays empty cards in the carousel. (function(){ var data = ${dataList}; var cards = data.map(function(item) { return { type: "AdaptiveCard", $schema: "http://adaptivecards.io/schemas/adaptive-card.json", version: "1.3", body: [ { type: "Container", isVisible: true, items: [ { type: "Image", style: "person", url: item.imageUrl, altText: item.imageAltText, size: "medium" }, { type: "TextBlock", text: item.title, weight: "bolder", size: "medium", wrap: true } ] }, { type: "ActionSet", actions: [ { type: "Action.OpenUrl", title: "View Profile", url: item.buttonUrl, id: item.buttonId } ] } ] } }); return cards; })(); ${dataList} is an array of objects with properties imageUrl, imageAltText, title, buttonUrl and buttonId. I came across documentation on how to implement this in Copilot Studio - https://learn.microsoft.com/en-us/microsoft-copilot-studio/guidance/adaptive-card-display-carousels Do we have any documentation available for Health Bot as well? Appreciate any guidance !! Thanks, AbhilashakuchuriJan 13, 2025Copper Contributor49Views0likes0Commentsvalue changes sheet
Hi everyone, I'm not very expert in office script, I wrote this code but I would like the script to start when a value changes in another sheet. for now I can only activate it via button. Thank you function main(workbook: ExcelScript.Workbook) { // Refresh all data connections workbook.refreshAllDataConnections(); // Row height workbook.getWorksheet("Matrice").getRange("A4").getFormat().setRowHeight(200 * 3 / 4); workbook.getWorksheet("Matrice"). getRange("F5:F1000").getEntireColumn().getFormat().setHorizontalAlignment(ExcelScript.HorizontalAlignment.left); }Slash77Apr 27, 2024Copper Contributor284Views0likes0CommentsIntegrating health bot to angular
Hi Team, as per my project requirement i need to integrate the azure health bot to my angular application. can any one suggest how can i achieve this or any code snippet will be highly appriciated Thanks, VijayVIJAY VENKATARAMANA ALUVALAFeb 08, 2024Copper Contributor302Views0likes0CommentsHealth bot Media Qurestion
Hello! I have two questions when using the health bot. 1. I try to use the “getUserMedia” method to access the user’s camera inside the health bot as an action, but that called up an error as “navigator is not defined”. Is this because the Azure Health Bot couldn’t access the getUserMedia API? If that’s the reason, are there any other methods I can use to achieve this requirement? Is there any previous chatbot that has successfully accessed the users’ camera and audio? The core code I try to use in Action: // require to access a video and audio input device from user let constrains = { video:true, audio: true }; let promise = navigator.mediaDevices.getUserMedia(constraints); promise.then(function(mediaStream){ // get video element and play the video var video = document.querySelector("video"); video.srcObject = mediaStream; video.onloadedmetadata = function(e){ video.play(); }; }); // if the require is failed promise.catch(function(err){ console.log(err) }); 2. I try to show back the video that the user uploaded to the bot as an attachment but failed. I try to use a Hero card, but I don't really understand how it works for the card action "playVideo". Can I show the video inside a Hero card or others? What should be the value?Xiaohan75Apr 08, 2022Copper Contributor602Views0likes0CommentsLUIS Integration in Health Bot
Hi As provided by microsoft document to integrate LUIS in azure health Bot.(https://docs.microsoft.com/en-us/learn/modules/health-bot-language-understanding/6-integrate-luis-into-the-azure-health-bot) They have only provided a provision to test in web chat. But how to integrate the luis model created in our custom scenario. please provide Insert LU functionality in detail to integrate LUIS into scenario. Even LU functionality is added to scenario and interrupting is allowed in configuration, its not recognising the intent and breaking the flow. Instead it is working according to flow designed in scenario.Lakshmi_RaviMar 16, 2022Copper Contributor638Views0likes0CommentsUnable to handoff user to live agent from Microsoft Health Bot Service to Microsoft Teams
Unable to handoff user to live agent from Microsoft Health Bot Service to Microsoft Teams Hi, I had configured the health for Microsoft Teams bot according to this links https://docs.microsoft.com/en-us/healthbot/handoff, https://docs.microsoft.com/en-us/healthbot/handoff-teams and i am unable to log in as an agent on Microsoft Teams. and I am getting Handoff scenario error - Check Microsoft Teams handoff configuration or parameters passed to the agent login scenario when I login through my team's app. please check the attachment Any response from your side with be appreciated.VikramCherryOct 08, 2021Copper Contributor536Views0likes0CommentsCustom Telemetry - Custom Event for Bot
I know we can add custom telemetry for the Healthcare bot using session.logCustomEvent(<eventName>, <eventPayload>). But, I've noticed that it logs the custom event parameter "speaker" to "user" instead of the bot. So, is there anyway to log a custom event and set the speaker parameter to the "bot"? I can't find any documentation on session.logCustomEvent that takes in more parameters than the eventName and eventPayload. And, it messes up all my analytics dashboards when it thinks these customEvents are from the user.Greg GalipeauJan 08, 2021Copper Contributor613Views0likes0CommentsCan we run Microsoft Healthcare Bot or Bot Framework on Salesforce Marketing Cloud?
Hi All, Scenario is: Client want to develop a digital sales rep/virtual assistant for the Sales representatives. Given the fact that they have Veeva CRM running on Salesforce Marketing Cloud. And having said that they have some interest around MS Bot Framework and Healthcare Bot. Question is: 1. How can we make run MS Bot Framework on this scenarion i.e. Veeva CRM on SFC Marketing Cloud? 2. Do we have any similar reference architecture somewhere to refer to? 3. How this can be possible? May be with node.js code of Bot Framework on Salesforce and then make it connect and derive business logic through Azure Logic Apps Any insights, inputs, reference to architecture and support will be helpful here. Thank youamitrawal8432Mar 12, 2020Copper Contributor857Views0likes0Comments
Resources
Tags
- Botframework1 Topic
- Microsoft Healthcare bot1 Topic
- azure1 Topic
- LUIS1 Topic
- ChatBot1 Topic
- azure ai1 Topic
- Regional1 Topic
- Adaptive Cards1 Topic
- Carousel1 Topic
- Healthcare Bot1 Topic