afc478beaa | ||
---|---|---|
docs/media | ||
.gitignore | ||
CONTRIBUTING.md | ||
LICENSE | ||
LICENSE-CODE | ||
README.md | ||
whats-new.md |
README.md
Microsoft Bot Framework
Click here to find out what's new for //build2019!
The Microsoft Bot Framework is a comprehensive platform for building enterprise-grade conversational AI experiences. It includes a set of open source SDKs, tools, and services which enable developers to build, test, and connect bots that interact naturally with users, wherever they are. With the Microsoft Bot Framework, it is easy to create a bot with the ability to speak, listen, understand, and learn from your users with Azure Cognitive Services.
This repo lists the SDK, tools, and services needed to build a great conversational AI experience. Its role is to serve as a landing page and one place to find all the information required to get started.
- Bot Framework SDK v4
- Bot Framework Solutions
- Azure Bot Service
- Bot Framework Emulator
- Bot Framework Web Chat
- Bot Framework Tools
- Language Understanding
- QnA Maker
- Dispatch
- Speech Services
- Adaptive cards
- Analytics
- Bot Framework SDK v3
Bot Framework SDK v4
The Bot Framework SDK v4 is an open source SDK that enable developers to model and build sophisticated conversation using their favorite programming language.
C# | JS | Python | Java | |
---|---|---|---|---|
Stable Release | 4.4.3 | 4.4.0 | 4.4.0b1 (preview) | 4.0.0a6 (preview) |
Docs | docs | docs | ||
Samples | .NET Core, WebAPI | Node.js , TypeScript, es6 | Python |
Bot Framework SDK v4 - (New! - version 4.5 preview)
The Bot Framework SDK v4 - Version 4.5 new capabilites in preview.
-
Adaptive Dialog | docs | C# samples :: Adaptive Dialogs enable developers to build conversations that can be dynamically changed as the conversation progresses. Traditionally developers have mapped out the entire flow of a conversation up front, which limits the flexibility of the conversation. Adaptive dialogs allow them to be more flexible, to respond to changes in context and insert new steps or entire sub-dialogs into the conversation as it progresses. Additionally as with other SDK V4 concepts, we have defined adaptive dialogs such that they can be defined via declarative that are interpreted at runtime; which allows us to have tooling on top of this and integrate with services.
-
Language Generation | docs | C# samples :: Learning from our customers experiences and bringing together capabilities first implemented by Cortana and Cognition teams, we are introducing Language Generation; which allows the developer to extract the embedded strings from their code and resource files and manage them through a Language Generation runtime and file format. Language Generation enable customers to define multiple variations on a phrase, execute simple expressions based on context, refer to conversational memory, and over time will enable us to bring additional capabilities all leading to a more natural conversational experience.
-
Common Expression Language | api :: Both Adaptive dialogs and Language Generation rely on and use a common expression language to power bot conversations.
Botkit
Botkit is a developer tool and SDK for building chat bots, apps and custom integrations for major messaging platforms. Botkit bots hear()
triggers, ask()
questions and say()
replies. Developers can use this syntax to build dialogs - now cross compatible with the latest version of Bot Framework SDK.
In addition, Botkit brings with it 6 platform adapters allowing Javascript bot applications to communicate directly with messaging platforms: Slack, Webex Teams, Google Hangouts, Facebook Messenger, Twilio, and Web chat.
Botkit is part of Microsoft Bot Framework and is released under the MIT Open Source license
Bot Framework Solutions (New! - preview)
The Bot Framework Solutions repository provides a set of templates, solution accelerators and skills to help build sophisticated conversational experiences.
Name | Description |
---|---|
Virtual Assistant. Customers and partners have a significant need to deliver a conversational assistant tailored to their brand, personalized to their users, and made available across a broad range of canvases and devices. This brings together all of the supporting components and greatly simplifies the creation of a new bot project including: basic conversational intents, Dispatch integration, QnA Maker, Application Insights and an automated deployment. |
|
Skills. A library of re-usable conversational skill building-blocks enabling you to add functionality to a Bot. We currently provide: Calendar, Email, Task, Point of Interest, Automotive, Weather and News skills. Skills include LUIS models, Dialogs, and integration code delivered in source code form to customize and extend as required. | |
Analytics. Gain key insights into your bot’s health and behavior with the Bot Framework Analytics solutions, which includes: sample Application Insights queries, and Power BI dashboards to understand the full breadth of your bot’s conversations with users. |
Azure Bot Service
Azure Bot Service enables you to host intelligent, enterprise-grade bots with complete ownership and control of your data. Developers can register and connect their bots to users on Skype, Microsoft Teams, Cortana, Web Chat, and more. Azure | docs | connect to channels
- Direct Line JS Client: If you want to use the Direct Line channel in Azure Bot Service and are not using the WebChat client, the Direct Line JS client can be used in your custom application. Github
- New! Direct Line Speech Channel: We are bringing together the Bot Framework and Microsoft's Speech Services to provide a channel that enables streamed speech and text bi-directionally from the client to the bot application. To sign up, add the 'Direct Line Speech' channel to your Azure Bot Service.
Bot Framework Emulator
The Bot Framework Emulator is a cross-platform desktop application that allows bot developers to test and debug bots built using the Bot Framework SDK. You can use the Bot Framework Emulator to test bots running locally on your machine or to connect to bots running remotely.
Bot Inspector (New! - Preview)
The Bot Framework Emulator has released a Beta of the new Bot Inspector feature: a way to debug and test your Bot Framework SDK v4 bots on channels like Microsoft Teams, Slack, Cortana, Facebook Messenger, Skype, etc. As you have the conversation, messages will be mirrored to the Bot Framework Emulator where you can inspect the message data that the bot received. Additionally, a snapshot of the bot state for any given turn between the channel and the bot is rendered as well. You can inspect this data by clicking on the "Bot State" element in the conversation mirror. Read more about Bot Inspector
Bot Framework Web Chat
The Bot Framework Web Chat is a highly customizable web-based client chat control for Azure Bot Service that provides the ability for users to interact with your bot directly in a web page.
Bot Framework Tools
The Bot Framework SDK tools is an open source collection of cross-platform command line tools designed to support building robust end-to-end development workflows.
Tool | Description |
---|---|
Chatdown | Prototype mock conversations in markdown and convert the markdown to transcripts you can load and view in the new V4 Bot Framework Emulator |
LUDown | Build LUIS language understanding models using markdown files |
LUISGen | Auto generate backing C# / Typescript classes for your LUIS intents and entities. |
az bot | Manage Azure Bot Service using Azure CLI |
LUIS | Create and manage your LUIS.ai applications |
QnAMaker | Create and manage QnAMaker.ai Knowledge Bases. |
Dispatch | Build language models allowing you to dispatch between disparate components (such as QnA, LUIS and custom code) |
MSBot | Create and manage connected services in your bot configuration file |
Related Services
Language Understanding
A machine learning-based service to build natural language experiences. Quickly create enterprise-ready, custom models that continuously improve. Language Understanding Service(LUIS) allows your application to understand what a person wants in their own words.
-
New! Roles, External Entities and Dynamic Entities :: LUIS has added several features that let developers extract more detailed information from text, so users can now build more intelligent solutions with less effort. LUIS also extended roles to all entity types, which allows the same entities to be classified with different subtypes based on context. Developers now have more granular control of what they can do with LUIS, including being able to identify and update models at runtime through dynamic lists and external entities. Dynamic lists are used to append to list entities at prediction time, permitting user-specific information to get matched exactly. Separate supplementary entity extractors are run with external entities, and that information can be appended to LUIS as strong signals for other models.
-
New! Analytics dashboard :: LUIS is releasing a more detailed, visually-rich comprehensive analytics dashboard. Its user-friendly design highlights common issues most users face when designing applications, by providing simple explanations on how to resolve them to help users gain more insight into their models’ quality, potential data problems, and guidance to adopt best practices.
Docs | Add language understanding to your bot | use LUDown and LUIS command line tools
QnA Maker
QnA Maker is a cloud-based API service that creates a conversational, question-and-answer layer over your data. With QnA Maker, you can build, train and publish a simple question and answer bot based on FAQ URLs, structured documents, product manuals or editorial content in minutes.
- New! Extraction pipeline: Now you can extract hierarchical information from URLs, files and sharepoint
- New! Intelligence: Contextual ranking models, active learning suggestions
- New! Conversation: Multi-turn conversations in QnA Maker.
Docs | add qnamaker to your bot | use LUDdown and QnAMaker command line tools
Dispatch
Dispatch lets you build language models that allow you to dispatch between disparate components (such as QnA, LUIS and custom code).
Speech Services
Speech Services convert audio to text, perform speech translation and text-to-speech with the unified Speech services. With the speech services, you can integrate speech into your bot, create custom wake words, and author in multiple languages.
Adaptive Cards
Adaptive Cards are an open standard for developers to exchange card content in a common and consistent way, and are used by Bot Framework developers to create great cross-channel conversatational experiences.
- Open framework, native performance - A simple open card format enables an ecosystem of shared tooling, seamless integration between apps, and native cross-platform performance on any device.
- Speech enabled from day one - We live in an exciting era where users can talk to their devices. Adaptive Cards embrace this new world and were designed from the ground up to support these new experiences.
Bot Framework SDK v3
Note: While we actively maintain the v3 SDK, we are focusing out attention on the v4 of the SDK. Read more on SDK v3 long-term support.
The Bot Framework SDK v3 includes SDKs that enable developers to model and build sophisticated conversation using their favorite programing language.
C# | JS | |
---|---|---|
Stable Release | 3.20.1 | 3.16.0 |
Docs | docs | docs |
Samples | C# | Node.js |
Reporting Security Issues
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) at secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter.
Copyright (c) Microsoft Corporation. All rights reserved.