Practical Bot Development - Szymon Rozga

Practical Bot Development (eBook)

Designing and Building Bots with Node.js and Microsoft Bot Framework

(Autor)

eBook Download: PDF
2018 | 1st ed.
XVII, 654 Seiten
Apress (Verlag)
978-1-4842-3540-9 (ISBN)
Systemvoraussetzungen
62,99 inkl. MwSt
  • Download sofort lieferbar
  • Zahlungsarten anzeigen
Explore the concept of bots and discover the motivation behind working with these new apps with messaging platforms. This book is an accessible resource teaching the basic concepts behind bot design and implementation. Each chapter builds on previous topics and, where appropriate, real working code is shown that implements the concepts. By just picking up a code editor, you can start creating smart, engaging, and useful bot experiences today.

Practical Bot Development will teach you how to create your own bots on platforms like Facebook Messenger and Slack, incorporate extension APIs, and apply AI and ML algorithms in the cloud. By the end of this book, you'll be equipped with the information to reach thousands of new users with the bots you create!

The book is a great resource for those looking to harness the benefits of building their own bots and leveraging the platform feasibility of them.

What You'll Learn
  • Understand the general architecture of a bot
  • Distinguish between a great bot experience versus a bad bot experience.
  • Explore the ideas behind natural language processing and apply them to bot development
  • Implement real Messenger, Slack, and custom channel bots using Node.js and the Microsoft Bot Builder framework
  • Deploy bots to Facebook Messenger and Slack 
Who This Book Is For

Engineers, hobbyists, and  the design oriented community looking looking for an introduction to the technologies and concepts involved in building bots. The experience level could be from beginner to expert, although some familiarity with Node.js and APIs will be assumed. 


Szymon has worked in the software development space for over 14 years taking a shot at everything from Rails to C to Java to Python to .Net. He found a passion working on Windows Desktop trading applications on Wall Street with a focus on the front end user experience. The interest in attention to user interface details would take him on a tour of the different UI technologies on the Windows, Web and iOS/Android platforms. He enjoys leading deep discovery sessions and scoping solutions for his clients. Szymon has managed teams of engineers on a variety of projects and can be commonly found leading engagements, mentoring junior engineers (another passion of his) and collaborating on building team engineering capacity in emerging technologies.
 
Starting in 2016, Szymon has spent all his time dedicated to building bots for clients whether the bot runs on a mobile app, the web or a messaging platform. He has built a practice around the technology and is involved in a handful of bot projects at any time. He has a passion for paying attention to conversational experience details and is a big proponent of getting your bot to do a few tasks really well. He has a deep interest in all things Machine Learning and Artificial Intelligence. In his spare time he enjoys walking in nature, relaxing on the beach, playing guitar and spending time with his wife Kimberly, his son Theodore and his dog Chelsea. He's an avid reader, especially of things completely unrelated to software development.

Explore the concept of bots and discover the motivation behind working with these new apps with messaging platforms. This book is an accessible resource teaching the basic concepts behind bot design and implementation. Each chapter builds on previous topics and, where appropriate, real working code is shown that implements the concepts. By just picking up a code editor, you can start creating smart, engaging, and useful bot experiences today.Practical Bot Development will teach you how to create your own bots on platforms like Facebook Messenger and Slack, incorporate extension APIs, and apply AI and ML algorithms in the cloud. By the end of this book, you'll be equipped with the information to reach thousands of new users with the bots you create!The book is a great resource for those looking to harness the benefits of building their own bots and leveraging the platform feasibility of them.What You'll LearnUnderstand the general architecture of a botDistinguish between a great bot experience versus a bad bot experience.Explore the ideas behind natural language processing and apply them to bot developmentImplement real Messenger, Slack, and custom channel bots using Node.js and the Microsoft Bot Builder frameworkDeploy bots to Facebook Messenger and Slack Who This Book Is ForEngineers, hobbyists, and  the design oriented community looking looking for an introduction to the technologies and concepts involved in building bots. The experience level could be from beginner to expert, although some familiarity with Node.js and APIs will be assumed. 

Szymon has 15 years of hands on experience in the software development industry. He found a passion working on front end applications on Wall Street. The interest in attention to user interface details would take him on a tour of the different user interface technologies on the Windows, Web and iOS/Android platforms. He has managed teams of engineers on a variety of projects and since 2016, he has dedicated his time to building chat bots for clients across text and voice channels. He has built a practice around the technologies at Blue Metal, An Insight Company, and is involved in a handful of chat bot projects at any time. As Chief Architect of Emerging Technologies, he keeps cognitively flexible by reading and watching presentations about new technologies, educating clients, leading discovery sessions, scoping and guiding engagements, mentoring engineers and helping clients apply technologies such as Chat Bots, Blockchain and Augmented Reality to business problems.In his spare time, he enjoys taking walks, reading fiction, going to the beach, playing guitar, and spending time with his wife Kim, his son Teddy, and his Golden Retriever, Chelsea.

Chapter 1: Introducing BotsMotivation: apps vs bots and interacting with computers using Natural Language Interfaces. Google Now, Siri, Alexa. Great progress in recent years in both translation, voice recognition and natural language understanding technologies. Democratization of AI and Machine Learning APIs. Bots as a new way of implementing user interfaces.Use Case: describe a bot to help users order ticketsUse it to describe the following concepts:Natural language recognitionText conversationsRich media conversationsBot-led conversationsHuman hand offEmbedding into messaging appsChapter 2: Bot User Design (UX)Motivation: there is a good way for bots to communicate to you and there is a bad way. This chapter will distill some common “good” approaches to a bot and Also show some examples of bad communication.conversational User ExperienceText vs rich conversationsBot initiated conversationsPerceived performancePersonalized contentConcise and clear messagingConsistent voiceDo one thing well, provide valueChapter 3: Natural Language UnderstandingMotivation: part of the reason bots are becoming a thing is that natural language recognition technologies are widely available and easier to use.Intent classificationEntity Extractors – Named Entity ExtractionLUISHow to create a modelHow to train LUIS to recognize intents and entities (use ticket ordering bot as a use case)Action Fulfillment -  not used in LUIS anymore, but still used in cloud based, intent-led bot frameworks. It is interesting to know when creating bots.Chapter 4: Introducing Microsoft Bot Builder FrameworkMotivation: cloud bot services vs bot as a web service models. We favor bot as a web service model for ease of use, control, extensibility etc.MSFT bot builder framework – what is it?Node.js and why we use the Node.js version vs the C# versionCore conceptsIntro to emulatorNode.js samplesHow to run sampleSome basic bot samplesChapter 5: Dive into Bot BuilderMotivation: we need to go over the different concepts inside the bot builder framework and how they help us build bots.DialogsMessagesConnectorChannelsConversation StateRecognizersActionsProactive messagesChapter 6: Putting it all togetherMotivation: Build a sample bot that uses all of the concepts in the previous chapterBack to ordering tickets bot – lots of codingChapter 7: Advanced bot builder topicsMotivation: Expand sample from #6 with some more advanced concepts like proactive messaging, better dialog management, custom recognizers, deeper action support, group chats, etc.Lots of code hereChapter 8: Deploying to Channels and sending custom dataMotivation: a bot is useless unless it is connected to a channel. Let’s see how this is done. We introduce the bot framework web site.Focus on Messenger and SlackShow some custom functionality such as messenger square cards or slack updating messagesChapter 9: Custom channelsMotivation: sometimes you would like to support a custom channel that is not supported out of the box by Microsoft. How do we do this?Using direct lineUsing vanilla bot builder interfacesChapter 10: Making the Bot smarterMotivation: there is a lot of easy to use AI/ML services out there. What are they and how can they help our bot be smarter.VisionEmotionLanguage DetectionSentimentLinguistic AnalyticsQnA MakerWhy use these? Why not use these services? What is the goal of your bot?Chapter 11: Communicating using Custom GraphicsMotivation: rich content and graphics can better capture information than plain text using dynamically generated imagesAdaptive Cards – adaptivecards.io – one option, easier to deal with Custom HTML generation – generate images from html using PhantomJS on the serverChapter 12: Human HandoffMotivation: customers want to keep in touch with your brand, what happens when a human is needed?Chapter 13: Logging and Bot AnalyticsHow do we log data?What are the interesting measures that we look for in a bot?What systems are out there and what can they can us figure out about our customers and bots?Chapter 14: Other bot implementation platformsBrief overview of the technology field: Api.ai, wit.ai, IBM conversation, amazon, etc.Goal of this chapter will be to demonstrate that these frameworks have very similar approaches in terms of NLU, conversation management, state, etc. Knowledge from this book will allow you to develop using the other systems. 

Erscheint lt. Verlag 18.7.2018
Zusatzinfo XVII, 654 p. 302 illus.
Verlagsort Berkeley
Sprache englisch
Themenwelt Mathematik / Informatik Informatik Netzwerke
Mathematik / Informatik Informatik Software Entwicklung
Informatik Theorie / Studium Künstliche Intelligenz / Robotik
Mathematik / Informatik Informatik Web / Internet
Informatik Weitere Themen Hardware
Schlagworte Artificial Intelligence • BOT • Building a bot • Conversational Intelligence • Conversation Design • Luis.ai • Messenger Send API • Microsoft Bot Builder Framework • Natural Language Processing • Slack Message API
ISBN-10 1-4842-3540-1 / 1484235401
ISBN-13 978-1-4842-3540-9 / 9781484235409
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 16,4 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
der Praxis-Guide für Künstliche Intelligenz in Unternehmen - Chancen …

von Thomas R. Köhler; Julia Finkeissen

eBook Download (2024)
Campus Verlag
38,99
Wie du KI richtig nutzt - schreiben, recherchieren, Bilder erstellen, …

von Rainer Hattenhauer

eBook Download (2023)
Rheinwerk Computing (Verlag)
24,90