-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Microsoft/BotBuilder
- Loading branch information
Showing
5 changed files
with
62 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<id>$id$</id> | ||
<version>$version$</version> | ||
<authors>Microsoft</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>The Microsoft.Bot.Builder is a framework for building bots based on a persistent dialog system</description> | ||
<summary>The Microsoft.Bot.Builder is a framework for building bots based on a persistent dialog system</summary> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="Microsoft.AspNet.WebApi.Client" version="5.2.3" /> | ||
<dependency id="Microsoft.AspNet.WebApi.Core" version="5.2.3" /> | ||
<dependency id="Microsoft.Bot.Connector" version="1.0.0.0" /> | ||
<dependency id="Microsoft.Rest.ClientRuntime" version="1.8.2" /> | ||
<dependency id="Microsoft.WindowsAzure.ConfigurationManager" version="3.1.0" /> | ||
<dependency id="Newtonsoft.Json" version="7.0.1" /> | ||
</dependencies> | ||
</metadata> | ||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<id>$id$</id> | ||
<version>$version$</version> | ||
<authors>Microsoft</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
Microsoft Bot Builder is a powerful framework for constructing bots that can handle both freeform interactions and more guided ones where the possibilities are explicitly shown to the user. It is easy to use and leverages C# to provide a natural way to write bots. | ||
|
||
High Level Features: | ||
* Powerful dialog system with dialogs that are isolated and composable. | ||
* Built-in dialogs for simple things like Yes/No, strings, numbers, enumerations. | ||
* Built-in dialogs that utilize powerful AI frameworks like LUIS http://luis.ai. | ||
* Bots are stateless which helps them scale. | ||
* Form Flow for automatically generating a Bot from a C# class for filling in the class and that supports help, navigation, clarification and confirmation. | ||
See http://docs.botframework.com/sdkreference/csharp/ for documentation. | ||
</description> | ||
<summary>Microsoft.Bot.Builder is a framework for easily building stateless bots that span from regular expressions to AI based natural language.</summary> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="Microsoft.AspNet.WebApi.Client" version="5.2.3" /> | ||
<dependency id="Microsoft.AspNet.WebApi.Core" version="5.2.3" /> | ||
<dependency id="Microsoft.Bot.Connector" version="1.0.0.0" /> | ||
<dependency id="Microsoft.Rest.ClientRuntime" version="1.8.2" /> | ||
<dependency id="Microsoft.WindowsAzure.ConfigurationManager" version="3.1.0" /> | ||
<dependency id="Newtonsoft.Json" version="7.0.1" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters