<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Bot on Thomy Gölles</title><link>https://thomygoelles.com/tags/bot/</link><description>Recent content in Bot on Thomy Gölles</description><generator>Hugo</generator><language>en</language><lastBuildDate>Wed, 17 Jul 2019 21:34:35 +0000</lastBuildDate><atom:link href="https://thomygoelles.com/tags/bot/index.xml" rel="self" type="application/rss+xml"/><item><title>SelectedTech Webinar 3 - CI/CD with your bot and Azure DevOps</title><link>https://thomygoelles.com/selectedtech/selectedtech-webinar-003/</link><pubDate>Wed, 17 Jul 2019 21:34:35 +0000</pubDate><guid>https://thomygoelles.com/selectedtech/selectedtech-webinar-003/</guid><description>&lt;p&gt;The SelectedTech Webinar 003 about using CI/CD with your bot and Azure DevOps is now available. We recorded the session on July 4th 2019. Check it out and leave a comment or send a tweet or message if you have any questions.&lt;/p&gt;
&lt;p&gt;In this episode Stephan demos how to create a build and release pipeline within Azure DevOps. We discuss the two different configurations for build and release and talk about how to reuse your config for different target systems. The goal is to switch your target environment with Azure DevOps and to be able to deploy your bot to different Azure tenants just by clicking through the release pipeline.&lt;/p&gt;</description></item><item><title>SelectedTech Webinar 4 - QnA Maker Postman Collection</title><link>https://thomygoelles.com/selectedtech/selectedtech-webinar-5/</link><pubDate>Wed, 17 Jul 2019 14:27:35 +0000</pubDate><guid>https://thomygoelles.com/selectedtech/selectedtech-webinar-5/</guid><description>&lt;p&gt;The SelectedTech Webinar 004 is about how to use Postman to talk to the QnA maker API. &lt;a href="https://www.getpostman.com/" target="_blank" rel="noopener"&gt;Postman&lt;/a&gt; streamlines the development process and captures a single source of truth about your APIs while also simplifying collaboration across your teams and organisations.&lt;/p&gt;
&lt;p&gt;QnA Maker is a cloud-based API service that creates a conversational, question and answer layer over your data. QnA Maker enables you to create a knowledge-base(KB) from your semi-structured content such as Frequently Asked Question (FAQ) URLs, product manuals, support documents and custom questions and answers. The QnA Maker service answers your users&amp;rsquo; natural language questions by matching it with the best possible answer from the QnAs in your Knowledge base.&lt;/p&gt;</description></item><item><title>SelectedTech Webinar 2 - QnA Bot Local Development</title><link>https://thomygoelles.com/selectedtech/selectedtech-webinar-002/</link><pubDate>Mon, 08 Jul 2019 17:22:22 +0000</pubDate><guid>https://thomygoelles.com/selectedtech/selectedtech-webinar-002/</guid><description>&lt;p&gt;The SelectedTech Webinar 002 about local QnA bot development and deployment to Microsoft Azure and Microsoft Teams is now available. We recorded the session on July 4th 2019. Check it out and leave a comment or send a tweet or message if you have any questions.&lt;/p&gt;
&lt;p&gt;In this episode we take the QnA bot from webinar 001 and download the code to a local machine. After showing how to run the bot in a local IIS we use ngrok for tunneling access for a Teams deployment. After making a minor code change we republish the bot and make sure everything is still working. The episode ends with Rick asking Stephan about using Azure DevOps for CI/CD which will be our topic for Webinar 003.&lt;/p&gt;</description></item><item><title>SelectedTech Webinar 1 - A No Code QnA Bot In Microsoft Teams</title><link>https://thomygoelles.com/selectedtech/selectedtech-webinar-001/</link><pubDate>Mon, 20 May 2019 19:43:30 +0000</pubDate><guid>https://thomygoelles.com/selectedtech/selectedtech-webinar-001/</guid><description>&lt;p&gt;Welcome to our first SelectedTech Webinar. We are four MVPs from Europe and we decided to start our own webinar series. What we want to show is how we do stuff. We meet online and hit the record button. There is not a lot of time for preparation or planning for our webinars. As a result, you will see mistakes and errors, not high polished content. We strongly believe that showing how to overcome those hiccups adds additional value to the content.&lt;/p&gt;</description></item><item><title>SharePoint Saturday Barcelona 2018 + "El Clasico" Demo</title><link>https://thomygoelles.com/events/sharepoint-saturday-barcelona-2018-el-clasico-demo/</link><pubDate>Sun, 28 Oct 2018 16:52:59 +0000</pubDate><guid>https://thomygoelles.com/events/sharepoint-saturday-barcelona-2018-el-clasico-demo/</guid><description>&lt;p&gt;Yesterday I had the pleasure to present at SharePoint Saturday Barcelona. The whole of 2018 we were kind of touring with our &amp;ldquo;lunch bell&amp;rdquo; session. It all began at SPS Barcelona 2017 where a part of the session on PnP was a demo of the lunch bell. The feedback was really great and the idea of creating a session around this topic alone was borne. But all good ends at some point in time in our case this was one of the last times we actually present this topic. We have a full backlog of ideas for 2019 and after ESPC we won&amp;rsquo;t present this anymore. There is also a real-world reason behind the decision. We as Solvion move to a new office by the 1st of January, so there isn&amp;rsquo;t a need for this kind of lunch bell anymore. But let&amp;rsquo;s see what the new office provides and what ideas will be there after moving. Here the slides from yesterday: Back to SharePoint Saturday Barcelona. There is also another big event currently in Barcelona, El Clasico. The football match between FC Barcelona and Real Madrid. Last week in Brussels Edin asked me to use this match for one of my demos. It took me a few hours yesterday, but then I was able to showcase a SharePoint Framework ListView Command Set extension that takes the selected image in a document library and askes Azure Computer Vision for a description of the image. We tried the Command Set with a few images from footballers and got back a friendly message when the Command Set detected a local player from Barcelona. On the other hand, if it detects a certain player from Real Madrid, we just update the image with a logo from Barcelona just to make sure the audience in Barcelona isn&amp;rsquo;t starting throwing tomatoes at me presenting ;) I will put the complete project code on Github next week, but here the important part with the actual &amp;ldquo;logic&amp;rdquo; behind:```
@override
public onExecute(event: IListViewCommandSetExecuteEventParameters): void {
switch (event.itemId) {
case &amp;lsquo;COMMAND_1&amp;rsquo;:
{
console.log(&amp;ldquo;COMMAND_1 clicked&amp;rdquo;);
const itemId: number = event.selectedRows[0].getValueByName(&amp;lsquo;ID&amp;rsquo;);
var serverRelativeUrl = &amp;ldquo;&amp;rdquo;;&lt;/p&gt;</description></item><item><title>HappitChat: The Role of AI in the Modern Enterprise</title><link>https://thomygoelles.com/happitchat-the-role-of-ai-in-the-modern-enterprise/</link><pubDate>Wed, 12 Sep 2018 12:52:25 +0000</pubDate><guid>https://thomygoelles.com/happitchat-the-role-of-ai-in-the-modern-enterprise/</guid><description>&lt;p&gt;&lt;strong&gt;At this#HappitChat we will discuss the role of AI in the modern enterprise with our guests from Solvion. The recording will take about 30 minute and our experts will share with you:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;How can we incorporate AI into our daily work and collaboration?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How can AI support employees’ work today?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Examples of AI in the modern workplace.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Host:&lt;/strong&gt; Jussi ‘Juicy’ Mori, Happit&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Guests:&lt;/strong&gt; Thomy Gölles, Solvion | Stephan Bisser, Solvion&lt;/p&gt;</description></item><item><title>SharePoint Saturday Warsaw 2018</title><link>https://thomygoelles.com/events/sharepoint-saturday-warsaw-2018/</link><pubDate>Tue, 19 Jun 2018 07:50:04 +0000</pubDate><guid>https://thomygoelles.com/events/sharepoint-saturday-warsaw-2018/</guid><description>&lt;p&gt;Last weekend Stephan (&lt;a href="https://cloudguy.pro/" target="_blank" rel="noopener"&gt;cloudguy.pro&lt;/a&gt;) and I had the pleasure to present at SharePoint Saturday Warsaw. The local crew around Edyta managed to get one of the best locations ever. The whole event took place in the local football stadium of Legia Warsaw. Our session was in their press conference room where on a regular day the coach or the players answer questions from the press. [ngg_images source=&amp;ldquo;galleries&amp;rdquo; container_ids=&amp;ldquo;2&amp;rdquo; display_type=&amp;ldquo;photocrati-nextgen_basic_thumbnails&amp;rdquo; override_thumbnail_settings=&amp;ldquo;0&amp;rdquo; thumbnail_width=&amp;ldquo;240&amp;rdquo; thumbnail_height=&amp;ldquo;160&amp;rdquo; thumbnail_crop=&amp;ldquo;1&amp;rdquo; images_per_page=&amp;ldquo;6&amp;rdquo; number_of_columns=&amp;ldquo;3&amp;rdquo; ajax_pagination=&amp;ldquo;1&amp;rdquo; show_all_in_lightbox=&amp;ldquo;0&amp;rdquo; use_imagebrowser_effect=&amp;ldquo;0&amp;rdquo; show_slideshow_link=&amp;ldquo;1&amp;rdquo; slideshow_link_text=&amp;quot;[Show slideshow]&amp;quot; order_by=&amp;ldquo;sortorder&amp;rdquo; order_direction=&amp;ldquo;ASC&amp;rdquo; returns=&amp;ldquo;included&amp;rdquo; maximum_entity_count=&amp;ldquo;500&amp;rdquo;] In our session, we once again showcased how AI in the modern workplace can help in creating an engaging environment for users. In addition to the end user value, we also focus on how a creative idea can be used to learn new things in the fields of Office365 or Azure in a natural way. Our use case of the food truck monitor probably will never be sold to a customer, but you can imagine how much we learned about the technology included during the setup of the demo. Since a few weeks, we try to record all our sessions on video (Go check out our &lt;a href="https://www.youtube.com/channel/UC06iQ_SyfdKsveFmKwFtC4Q" target="_blank" rel="noopener"&gt;Youtube channel&lt;/a&gt;). If you are interested, start watching, for those with a smaller time budget the slides are also available here.    &lt;/p&gt;</description></item><item><title>SharePoint Saturday Zurich 2018</title><link>https://thomygoelles.com/events/sharepoint-saturday-zurich-2018/</link><pubDate>Sun, 03 Jun 2018 16:52:05 +0000</pubDate><guid>https://thomygoelles.com/events/sharepoint-saturday-zurich-2018/</guid><description>&lt;p&gt;Last Saturday we (Stephan Bisser and myself) had the pleasure to be part of SharePoint Saturday Zurich. Jussi Mori, Samuel Zürcher and Stefano Tempesta did a great job in organizing once more an epic event packed with the latest and greatest on SharePoint, Office365 and the relating Azure areas. &lt;img src="https://thomygoelles.com/img/2018/06/DeGyCQCW0AAOYL-.jpg" alt=""&gt; In his keynote, Vesa Juvonen from Microsoft took us on a brief journey through the history of SharePoint. The screenshots from the portal landing pages of version 2007 and 2010 took some of us in the audience way back in time. Somehow later in the day or to be more precise in the evening, some of the speakers realized how long they have been around SharePoint and what conclusion can be drawn out from this fact. Sorry Maarten &amp;amp; Vesa ;) &lt;img src="https://thomygoelles.com/img/2018/06/53454834-f247-4c46-9144-61fcffadd79a-original.jpeg" alt=""&gt; Stephan and I showed our 21st-century lunch bell with a live demo in Zurich. The lunch bell recognizes a special food truck daily at our driveway and notifies our users in Microsoft Teams or Skype for Business. As we use Cognitive Services for our system with pictures of our office back home it&amp;rsquo;s actually not that easy to demo the system on the go. To still be able to show the features of Azure we decided to make a mobile version. This means during the session we are trying to detect this little food truck: &lt;img src="https://thomygoelles.com/img/2018/02/IMG_9311-e1518967592469.jpg" alt=""&gt; &lt;img src="https://thomygoelles.com/img/2018/06/ScreenWebSPSZurich.png" alt=""&gt; In terms of preparing the demo, we need to take sample pictures in the actual room of the session to train the model. That means instead of lunch break Stephan and I took the opportunity to take around 60 images of the table on the main stage to later on demo the system within the environment. This type of demo is always special and time intensive to prepare, but when the deadline gets closer and closer the fun starts, right? &lt;img src="https://thomygoelles.com/img/2018/06/truck.png" alt=""&gt;   Thanks again to the super hero organizer of the event, you did an awesome job and we are already looking forward to next year! &lt;img src="https://thomygoelles.com/img/2018/05/spszurich.jpg" alt=""&gt;&lt;/p&gt;</description></item><item><title>Global Azure Bootcamp Switzerland 2018</title><link>https://thomygoelles.com/events/global-azure-bootcamp-switzerland-2018/</link><pubDate>Sat, 21 Apr 2018 14:13:35 +0000</pubDate><guid>https://thomygoelles.com/events/global-azure-bootcamp-switzerland-2018/</guid><description>&lt;p&gt;Today I had the pleasure of co-presenting with my Colleague Stephan at the Global Azure Bootcamp Switzerland in Zürich. As there has been a recent addition to Stephan&amp;rsquo;s family he wasn&amp;rsquo;t able to come to Zürich this time, but in today&amp;rsquo;s world you just take a tiny Jabra USB speaker on the go and ready is the remote presenting interface in Skype for Business. This post is a little follow up on the session, sharing some background links. Also, there were some questions afterwards and instead of writing different emails in private, I decided to blog about it and just share the link. Bringing the spirit of &amp;ldquo;sharing is caring&amp;rdquo; from SharePoint / Office Dev Patterns and Practices to the Azure community, right? The session was about Stephan&amp;rsquo;s project called “Homie” – A language understanding bot for smart homes. We talked about how you can use a chatbot based on the Microsoft Bot Framework and LUIS and wire it up to use AzureIoT Hub for communication with a RaspberryPi. The idea is that you tell the chatbot to turn the lights on or off in a given room. The bot uses LUIS to identify your intent, recognises commands and objects and triggers a command flow in AzureIoT Hub. From there it&amp;rsquo;s only a small step to actually get the command to the RaspberryPi and switch on the lights on our demo led module. The whole setup looked something like this: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2018/04/IMG_0525.png" alt=""&gt; This was our test run before the session. And here the working system: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2018/04/IMG_0524.png" alt=""&gt; &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2018/04/IMG_0528.png" alt=""&gt; Everything turned out good, the demo gods were kind and even the remote setup was flawless. As there were some questions afterwards, I just do a little list of links here pointing to different articles for further reading: A comparison of the different cognitive services out there &lt;a href="https://blog.filestack.com/thoughts-and-knowledge/comparing-google-vision-microsoft-cognitive-amazon-rekognition-clarifai/" target="_blank" rel="noopener"&gt;Tech Showcase: Custom Vision Service&lt;/a&gt; &lt;a href="https://www.youtube.com/watch?v=imWwODo2y_w" target="_blank" rel="noopener"&gt;Computer vision made easy: From pre-trained models to Custom Vision, Microsoft Cognitive Services ha&lt;/a&gt; &lt;a href="https://www.youtube.com/watch?v=oJco3VVVl48" target="_blank" rel="noopener"&gt;Custom Vision from Cognitive Services: easily build a custom image classifier&lt;/a&gt; &lt;a href="https://www.youtube.com/watch?v=oeb3eYfdF6Q" target="_blank" rel="noopener"&gt;Building image classification using the Microsoft AI platform - BRK3334&lt;/a&gt; &amp;lt;&amp;ndash; The one with the background info on machine learning &lt;a href="https://twitter.com/SonyaKoptyev/status/987429033636872192" target="_blank" rel="noopener"&gt;Sonya Koptyev&amp;rsquo;s tweet on what demos to expect from Build on AI&lt;/a&gt; (drones!!!11!!) &lt;a href="http://cloudguy.pro/homie-a-language-understanding-bot-for-smart-homes/" target="_blank" rel="noopener"&gt;A complete guide on the solution on Stephans&amp;rsquo; blog&lt;/a&gt; and a German version &lt;a href="https://blogs.msdn.microsoft.com/codefest/2017/09/07/homie-ein-bot-der-die-menschliche-sprache-versteht/" target="_blank" rel="noopener"&gt;here&lt;/a&gt; &lt;a href="https://azure.microsoft.com/en-us/blog/introducing-microsoft-azure-sphere-secure-and-power-the-intelligent-edge/" target="_blank" rel="noopener"&gt;Azure Sphere announcement from April 16th, 2018&lt;/a&gt; &lt;a href="https://blog.hyperfish.com/why-enterprise-chat-bots-wont-replace-apps" target="_blank" rel="noopener"&gt;Jeremy Thake&amp;rsquo;s post on the chatbots and how they don&amp;rsquo;t replace apps&lt;/a&gt; And of course our slides: Big thanks and kudos to the Azure Zürich User Group for setting this up and let&amp;rsquo;s hope for more events in the future.&lt;/p&gt;</description></item><item><title>Theodore - a bot for creating a team in Microsoft Teams</title><link>https://thomygoelles.com/theodore-a-bot-for-creating-a-team-in-microsoft-teams/</link><pubDate>Fri, 17 Nov 2017 23:07:20 +0000</pubDate><guid>https://thomygoelles.com/theodore-a-bot-for-creating-a-team-in-microsoft-teams/</guid><description>&lt;p&gt;My last posts were all about getting up to speed with the Microsoft Teams PowerShell cmdlets released two weeks ago. Running those cmdlets in an Azure Function creates some nice options in terms of creating a team in Teams (still, the wording is just awkward). I&amp;rsquo;m sure you read about all the governance discussion that services like Teams or Groups start in each environment. Only with proper tooling, you can manage the process of orchestrating your different collaboration features in Office365. To take this idea to the next level, what about using a bot in Teams to handling a users request of creating a new team. &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/11/Theodore-Architecture.png" alt=""&gt;This post describes how you can create a bot for your users that will ask for some data in order to create a new team in Microsoft Teams. The bot will call an http triggered Azure Function that is using PowerShell to handle the requests and has the new Teams cmdlets deployed to be able to create a new team in our tenant.    To code in the git hub repo is based on an example project (&lt;a href="https://github.com/Microsoft/BotBuilder-Samples" target="_blank" rel="noopener"&gt;https://github.com/Microsoft/BotBuilder-Samples&lt;/a&gt;)  of a dot.net bot that shows how the different dialogs in a bot can be wired together. The solution is quite simple and of course no way production ready: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/11/TheodoreSolution.png" alt=""&gt; An example dialog of the bot looks like this: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/11/TheodoreConversation.png" alt=""&gt; To create this kind of dialog you simply start the interaction with the user with code like this:&lt;code&gt;private async Task MessageReceivedAsync(IDialogContext context, IAwaitable&amp;lt;IMessageActivity&amp;gt; result) { PromptDialog.Choice( context, this.AfterChoiceSelected, new\[\] { ShowMyTeamsOption, CreateTeamOption }, &amp;quot;Hi I'm Theodor your Team automation but. How can I help?&amp;quot;, &amp;quot;I am sorry but I didn't understand that. I need you to select one of the options below&amp;quot;, attempts: 2); }&lt;/code&gt;This will create our two different buttons and will guide the user in the directions we want them to choose from. After we have all the data from the user, in our case just an alias and a display name, we can now call the Azure Function handling our request.```
Dictionary&amp;lt;string, string&amp;gt; dictionary = new Dictionary&amp;lt;string, string&amp;gt;
{
{ &amp;ldquo;displayName&amp;rdquo;, this.displayname },
{ &amp;ldquo;alias&amp;rdquo;, this.alias }
};&lt;/p&gt;</description></item><item><title>Speaking at Collab365 Conference: Raspberry Pi, Azure &amp; Office365</title><link>https://thomygoelles.com/events/speaking-at-collab365-conference-raspberry-pi-azure-office365/</link><pubDate>Fri, 20 Oct 2017 13:38:03 +0000</pubDate><guid>https://thomygoelles.com/events/speaking-at-collab365-conference-raspberry-pi-azure-office365/</guid><description>&lt;p&gt;&lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/10/600x200_gc17_speakerbadge_lndscp.jpg" alt=""&gt; Have you heard about the virtual &lt;a href="https://events.collab365.community/collab365-global-conference-2017/" target="_blank" rel="noopener"&gt;Collab365 Global Conference 2017&lt;/a&gt; that’s streaming online November 1st – 2nd? Join me and &lt;a href="https://events.collab365.community/collab365-global-conference-2017/agenda/" target="_blank" rel="noopener"&gt;120 other speakers&lt;/a&gt; from around the world who will be bringing you the very latest content around SharePoint, Office 365, Flow, PowerApps, Azure, OneDrive for Business and of course the increasingly popular Microsoft Teams. The event is produced by the &lt;a href="https://collab365.community/" target="_blank" rel="noopener"&gt;Collab365 Community&lt;/a&gt; and is entirely free to attend. Places are limited to 5000 so be quick and &lt;a href="https://events.collab365.community/collab365-global-conference-2017/" target="_blank" rel="noopener"&gt;register now&lt;/a&gt;. During the conference I&amp;rsquo;d love you to watch my session which is called : &lt;strong&gt;&amp;lsquo;Raspberry Pi, Azure &amp;amp; Office365 - How MoCaDeSyMo informs us about lunch&amp;rsquo;&lt;/strong&gt; The session covers the story of MoCaDeSyMo, a Raspberry Pi taking pictures and uploading them to Azure. With the power of the Azure Custom Visions Service, based on a trained image recognition model we are able to tell if the local food truck is already here or not. MoCaDeSyMo than uses Microsoft Teams to inform the different subscribers. For further reference, all the information is also assessable through a SharePoint Online site. &lt;strong&gt;If you join me, you will learn:&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Raspberry Pi + Azure Functions + Cognitive Services + Microsoft Teams -&gt; How a Pi informs us about lunch</title><link>https://thomygoelles.com/raspberry-pi--azure-functions--cognitive-services--microsoft-teams-how-a-pi-informs-us-about-lunch/</link><pubDate>Mon, 26 Jun 2017 21:08:34 +0000</pubDate><guid>https://thomygoelles.com/raspberry-pi--azure-functions--cognitive-services--microsoft-teams-how-a-pi-informs-us-about-lunch/</guid><description>&lt;h2 id="introducing-mocadesymo"&gt;Introducing MoCaDeSyMo&lt;/h2&gt;
&lt;p&gt;Like every other office, ours also has different opportunities for lunch. You can take your break and visit the cafeteria, you can order food from some local restaurants or you can just step outside and buy something from the food truck. I&amp;rsquo;m a regular food truck buyer, but this option has some downsides. My office is on the other side from the front door, so I don&amp;rsquo;t see the guy arriving. This means I end up &amp;ldquo;pinging&amp;rdquo; colleagues with a direct line of sight regularly in Skype for Business in order to get some information about when I should go for lunch. Right now there are only a few people in our team with a window facing the front door so they end up getting pinged a lot. To end their misery we came up with the idea of some type of push notification.  The first idea was about writing a mobile app that the driver of the food truck installs on his phone. This app should recognise our GPS coordinates and push a simple message to Azure upon arrival at our front door. This could have worked but had a dependency on the driver&amp;rsquo;s phone and his free will to join the idea. After some further thinking, we came up with the idea of using a Raspberry Pi that takes pictures of the scene and uploads them and uses cognitive services to check whether the food truck is present or not. So without further ado, here is &lt;strong&gt;MoCaDeSyMo&lt;/strong&gt;:  &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/06/mocadesymo.png" alt=""&gt; &lt;strong&gt;MoCaDeSyMo&lt;/strong&gt;(mobile carbohydrate delivery system monitor) is the red fellow on the left of the picture. Insides his red body is a Raspberry Pi 3 and the default Pi camera module.  On weekdays between 10:45 and 11:30 MoCaDeSyMo takes a picture every minute and tries to detect the food truck of a local snack bar called &amp;ldquo;Imbiss Rainer&amp;rdquo;. His main target is to recognise something like this: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/06/image0025.png" alt=""&gt; To make sure everyone on the team knows about the arrival of the truck MoCaDeSyMo uses Azure Cognitive Services to predict the presence of the food truck and if the probability is above a given threshold a Microsoft Teams connector gets triggered and we get notified with a message like this: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/06/teams-message.png" alt=""&gt; This post discusses how we created the system based on this high-level architecture: &lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/07/architecture_food_bot.png" alt=""&gt;&lt;/p&gt;</description></item><item><title>Wie man einen Q&amp;A Bot für Microsoft Teams erstellt ohne eine Zeile zu coden</title><link>https://thomygoelles.com/deutsch/wie-man-einen-qa-bot-fur-microsoft-teams-erstellt-ohne-eine-zeile-zu-coden/</link><pubDate>Mon, 13 Mar 2017 21:53:15 +0000</pubDate><guid>https://thomygoelles.com/deutsch/wie-man-einen-qa-bot-fur-microsoft-teams-erstellt-ohne-eine-zeile-zu-coden/</guid><description>&lt;p&gt;Vor knapp einer Woche, am SharePoint Saturday in München, hielt Wictor Wilén eine spannende Session zum Tema Microsoft Teams. Er zeigte dabei die Möglichkeiten auf mit denen man Microsoft Teams erweitern und um Tabs und Connectoren ergänzen kann. Zusätzlich nutzte Wictor auch die Gelegenheit seinen neuen Yeoman Generator für Tabs in Teams zu veröffentlichen (&lt;a href="http://www.wictorwilen.se/yo_teams-tab" title="Yeoman Generator für Tabs in Teams" target="_blank" rel="noopener"&gt;http://www.wictorwilen.se/yo_teams-tab&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Inspiriert von diesem spannenden Vortrag war es an der Zeit selbst zu versuchen in wie weit man das dort gezeigte auch bereits im eigenen Tenant verwenden kann. Ziel war die Anlage eines QnA Bots ohne dafür eine Zeile Code zu benötigen und genau das wollen wir uns nun genauer ansehen.&lt;/p&gt;</description></item><item><title>SharePoint Wiki Bot - How to automate the Azure QnAMaker bot knowledgebase</title><link>https://thomygoelles.com/sharepoint-wiki-bot-how-to-automate-the-azure-qnamaker-bot-knowledgebase/</link><pubDate>Sun, 12 Mar 2017 19:04:46 +0000</pubDate><guid>https://thomygoelles.com/sharepoint-wiki-bot-how-to-automate-the-azure-qnamaker-bot-knowledgebase/</guid><description>&lt;h3&gt;&lt;img src="http://www.modernworkplacesolutions.rocks/wp-content/uploads/2017/03/result.png" alt=""&gt;&lt;/h3&gt;
&lt;h3 id="tldr"&gt;&amp;lt;TL;DR&amp;gt;&lt;/h3&gt;
&lt;p&gt;This post shows a proof of concept implementation of an Azure QnAMaker bot that gets its knowledgebase updated by changes in a SharePoint wiki. The main idea is, that you use a wiki as some sort of knowledge management system and that changes to the content automatically get pushed to the bot&amp;rsquo;s knowledge base. By adding a SharePoint Webhook to the wiki pages library you can trigger an Azure web job that manages the bot&amp;rsquo;s knowledge base. By using the Azure QnAMaker API the web job publishes changes to the knowledge base so that a connected Azure bot can use it as it&amp;rsquo;s backend data. This way you can add a heading and some text to the SharePoint wiki page and about two minutes later you can ask the bot in Skype or Microsoft Teams about it. Kudos to: &lt;a href="https://twitter.com/wictor" target="_blank" rel="noopener"&gt;Wictor Wilén&lt;/a&gt;, &lt;a href="https://twitter.com/O365Bert" target="_blank" rel="noopener"&gt;Bert Jansen&lt;/a&gt; and &lt;a href="https://twitter.com/paulschaeflein" target="_blank" rel="noopener"&gt;Paul Schaeflein&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>How to create your own Q&amp;A bot for Microsoft Teams without code</title><link>https://thomygoelles.com/how-to-create-your-own-qa-bot-for-microsoft-teams-with-no-code/</link><pubDate>Sun, 05 Mar 2017 18:46:37 +0000</pubDate><guid>https://thomygoelles.com/how-to-create-your-own-qa-bot-for-microsoft-teams-with-no-code/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Yesterday at SharePoint Saturday Munich I had the pleasure to attend Wictor Wilén&amp;rsquo;s session on extending Microsoft Teams. In this session Wictor showed some great demos and even announced the availability of a Yeoman generator for creating new Tabs in Teams (&lt;a href="http://www.wictorwilen.se/yo_teams-tab" target="_blank" rel="noopener"&gt;http://www.wictorwilen.se/yo_teams-tab&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Wictor&amp;rsquo;s talk inspired me to give the Microsoft Bot Framework a try and so I started creating a bot in my Azure tenant by the guidance of this blog post:&lt;a href="https://blogs.msdn.microsoft.com/bluesky/2016/12/22/introduction-to-qna-maker-en/" target="_blank" rel="noopener"&gt;Create BOT from FAQ page with no coding — QnA Maker as new member of Cognitive Service&lt;/a&gt;.&lt;/p&gt;</description></item></channel></rss>