azure
14 TopicsM365 Management
Hi all, Cards on the table—I’m a Product Manager for a solution focused on Microsoft 365 management as well as driving optimisation into innovation. My background is sysadmin-heavy, which led me to building the solution before moving into product. I’m not here to pitch anything but genuinely keen to hear from the community: What are your biggest pain points in managing M365, Azure, Copilot? What challenges do you face with user optimisation, processes etc? Are you using any tools today to help, or is it mostly manual? What is one thing that would make your life so much easier? Would love to hear what’s working (or not working) for you, as it would help me massively! Thanks!134Views0likes1CommentExploring the Advanced RAG (Retrieval Augmented Generation) Service
In the ever-evolving landscape of AI, LLM + RAG (Retrieval Augmented Generation) is a typical use scenario. Retrieving accurate related chunked data from complicated docs and then improving LLM response quality becomes challenge. There is no a silver bullet RAG can address all requirements so far. Developers need to verify different advanced RAG techs to find out which is a proper one for their scenarios considering accuracy, response speed, costs, etc. In order to solve this, with Azure Intelligent Document, Azure OpenAI, LlamaIndex, LangChain, Gradio..., I developed this AdvancedRAG service. This service is encapsulated in a Docker container, offers a streamlined way to experiment with different indexing techniques, evaluate their accuracy, and optimize performance for various RAG use cases. Whether you're building a quick MVP, a proof of concept, or simply exploring different indexing strategies, this service provides a versatile playground.9.2KViews3likes0CommentsAccess databases in Azure
Dear All, This is a question about the hosting of Access databases in either an Azure file server or in Azure File services. There doesn't seem to be much official information on this topic (at least not which I have found), so I am after some advice based on experience. The project I am working on uses a split database architecture, so a front-end user interface database with "linked tables" to a back-end data database. The project requires that the Access back-end database be moved into Azure, and the front-end accessible to PC based users. The options I can see are as follows The back-end: 1) hosted in Azure file services 2) hosted in a dedicated Azure file server virtual machine The front-end: 1) hosted on the end users' PCs 2) hosted in Azure on remote desktop services 3) hosted in Azure virtual desktop (AVD) Does anybody have any opinions or experience with any of these options? or can anybody offer any advice for a better option? At present, I am hoping to not move the back-end database to SQL Server. Thank you, Paul.Solved14KViews3likes4CommentsCreate a 3D collaborative app for Teams Meeting using Live Share SDK, Live Share Canvas and Babylon
Using Teams Live Share SDK, Live Share Canvas, Babylon, Fluent UI Web Component, we can implement a collaborative inking 2D/3D objects teams meeting extension with Teams UI style.7.1KViews2likes0CommentsCreate a Skill Bot from Azure Question Answering Service
The bot generated by Azure Question Answering service uses a root bot pattern, which doesn’t include the authentication and error handling requirement for a typical skill bot. This article explains how to create Skill Bot from Azure Question Answering for developers7.1KViews0likes0CommentsAdd chat bot feature to your desktop app
Recently, we have seen a lot of chatbots. For example FAQ bots and navigation bots and more. If the app users are looking for how to use the app, then chatbot UI is a good way for asking about apps. You can create a FAQ bot using Azure Bot Service and QnA Maker. It is straightforward. The following document explains how to create QA bots. Use QnA Maker to answer questions If you want to integrate a bot feature in your app, then you can use DirectLine APIs. You can use it add Microsoft.Bot.Connector.DirectLine package using NuGet. How to use DirectLine? At first, you create a DirectLineClient instance. var directLineClient = new DirectLineClient("here is key that is got from Bot Channels Registration"); Next, start a conversation. var conversation = await directLineClient.Conversations.StartConversationAsync(); You can send a message to bot using the conversation id. await directLineClient.Conversations.PostActivityAsync(conversation.ConversationId, new Activity { From = new ChannelAccount("User id"), Text = "a message send to bot", Type = ActivityTypes.Message, }); And you can also get messages from the bot. string watermark = null; while(true) { var activitySet = await directLineClient.Conversations.GetActivitiesAsync(conversation.ConversationId, watermark); watermark = activitySet.Watermark; var botMessages = activitySet.Activities.Where(x => x.From.Id == "bot id"); foreach (var message in botMessages) { // process a message that is from the bot } await Task.Delay(2000); } It's very simple and easy. How to display rich contents? The bots that are created by Azure Bot Service send some rich contents like image contents ,and cards contents(hero cards, adaptive cards) ,and more. If you want to support those contents, then you can use AdaptiveCards Renderer. For WPF package For UWP package If you detect rich contents in attachments of the message, then convert it to an AdaptiveCard instance, and then you can render it using AdaptiveCards Renderer. The convert logic is like below: private IEnumerable<AdaptiveCard> ConvertAttachmentsToAdaptiveCard(IEnumerable<Attachment> attachments) { AdaptiveCard parseHeroCard(string json) { var heroCard = JsonConvert.DeserializeObject<HeroCard>(json); return new AdaptiveCard("1.0") { Body = new List<AdaptiveElement> { new AdaptiveTextBlock(heroCard.Title) { Size = AdaptiveTextSize.Medium, Weight = AdaptiveTextWeight.Bolder, }, new AdaptiveTextBlock(heroCard.Text), }, }; } return attachments?.Select(x => x.ContentType switch { "application/vnd.microsoft.card.hero" => parseHeroCard(x.Content.ToString()), "image/png" => new AdaptiveCard("1.0") { Body = new List<AdaptiveElement> { new AdaptiveImage(x.ContentUrl), } }, _ => null, }) ?.Where(x => x != null); } The rendering logic is like following code: // The code for UWP var renderer = new AdaptiveCardRenderer(); var adaptiveCard = ... // Get an AdaptiveCards.AdaptiveCard instance var renderedCard = renderer.RenderAdaptiveCard(AdaptiveCard.FromJsonString(adaptiveCard.ToJson())); renderedCard.FrameworkElement; // get result The sample program The following repository is a sample app to render simple text messages, Hero cards and images. https://github.com/runceel/DirectLineClient5.6KViews1like1CommentDeploy a Docker multi-container application on Azure Web Apps
First published on MSDN on Oct 24, 2018 In the last post of my series about Docker we have seen how, thanks to Docker Compose, it's easy to deploy an application composed by multiple components running in different containers.10KViews1like0Comments