skype-dev-bots

所属分类:项目管理
开发工具:Others
文件大小:0KB
下载次数:0
上传日期:2023-08-17 17:21:09
上 传 者sh-1993
说明:  Skype机器人在Skype中使用聊天、语音或视频与用户进行个人对话,以娱乐、支持或商业。天空...,
(Skype bots interact with users in a personal conversation in Skype using chat, voice or video for entertainment, support or commerce. Skype Developer Platform team s mission is to assist developers to build highly engaging Skype bots using Microsoft Bot Framework. To learn more, visit https://dev.skype.com)

文件列表:
LICENSE (1183, 2018-03-13)
Samples/ (0, 2018-03-13)
Samples/Csharp/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot.sln (967, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/AppSettings.cs (897, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/App_Start/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/App_Start/WebApiConfig.cs (1322, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Controllers/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Controllers/MessagesController.cs (2384, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Dialogs/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Dialogs/RootDialog.cs (8195, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Global.asax (100, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Global.asax.cs (364, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Properties/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Properties/AssemblyInfo.cs (1350, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Properties/Resources.Designer.cs (8122, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Properties/Resources.resx (7622, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/QnAService/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/QnAService/Answer.cs (293, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/QnAService/Client.cs (4805, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/QnAService/RootResponse.cs (370, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Qna_Bot.csproj (10148, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Utils/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Utils/WelcomeCard.cs (1100, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/Web.config (3030, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/default.htm (442, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/Qna_Bot/packages.config (1120, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/ (0, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/create-kb.png (261861, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/generate-answer.png (431648, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/kb-keys.png (207853, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/no-match.png (783765, 2018-03-13)
Samples/Csharp/CognitiveServices-Knowledge/QnA/assets/publish-kb.png (400748, 2018-03-13)
... ...

## Overview Samples walk you through functionalities of Skype bots developed using various services provided by Microsoft. Every sample has a link to add the bot as a Skype contact, so that you can experience the bot capabilities before diving into the code. Once the bot is ready to be submitted to Skype channel, you can refer [Bot certification checklist](https://github.com/kobyrwork/skype-dev-bots/blob/master/certification/CHECKLIST.md) to ensure that the bot satisfies certification criteria. To get started, clone this repository. git clone https://github.com/Microsoft/skype-dev-bots.git cd skype-dev-bots ## Fundamentals Learn basics of Skype bot development. Sample | Description | C# | Node ------------ | ------------- | :-----------: | :-----------: Doctor Code | A bot that teaches how to implement basic functionalities in a Skype bot | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/Fundamentals/DoctorCode)[![Deploy to Azure][Deploy Button]][Deploy Csharp/Fundamentals/DoctorCode] | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Node/Fundamentals/DoctorCode)[![Deploy to Azure][Deploy Button]][Deploy Node/Fundamentals/DoctorCode] ## Storage Learn how to store and retrieve information from Skype bot using cloud services. Sample | Description | C# | Node ------------ | ------------- | :-----------: | :-----------: Note | A bot that manages personal notes using MongoDB and Azure | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/Storage-MongoDB/Notes)[![Deploy to Azure][Deploy Button]][Deploy Csharp/Storage-MongoDB/Notes] | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Node/Storage-MongoDB/Notes)[![Deploy to Azure][Deploy Button]][Deploy Node/Storage-MongoDB/Notes] ## Realtime Media Build powerful media bots using [Real-time Media Platform](https://github.com/kobyrwork/skype-dev-bots/blob/master/https://github.com/Microsoft/BotBuilder-RealTimeMediaCalling). Sample | Description | C# ------------ | ------------- | :-----------: Text to Speech | A bot that generates synthesized speech on an Azure cloud services and streams the audio to the user in a Skype audio call. | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/RealtimeMedia/TextToSpeech) Text to Video Speech | A bot that generates synthesized speech on an Azure cloud services and streams the video to the user in a Skype video call. | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/RealtimeMedia/TextToVideoSpeech) Video Player | A bot that plays video and audio files stored as an Azure blob. | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/RealtimeMedia/VideoPlayer) ## Cognitive Services Add intelligent features to your bots using [Microsoft Cognitive Services](https://github.com/kobyrwork/skype-dev-bots/blob/master/https://azure.microsoft.com/en-us/services/cognitive-services/). Sample | Description | C# | Node ------------ | ------------- | :-----------: | :-----------: Fridge | A bot that manages your refrigerator inventory using LUIS (Language Understanding Intelligent Service). | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/CognitiveServices-Language/Fridge) | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Node/CognitiveServices-Language/Fridge)[![Deploy to Azure][Deploy Button]][Deploy Node/CognitiveServices-Language/Fridge] QnA | A bot that helps you get answers based on FAQs using QnAMaker service. | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Csharp/CognitiveServices-Knowledge/QnA)[![Deploy to Azure][Deploy Button]][Deploy Csharp/CognitiveServices-Knowledge/QnA] | [View Sample](https://github.com/kobyrwork/skype-dev-bots/blob/master//Samples/Node/CognitiveServices-Knowledge/QnA)[![Deploy to Azure][Deploy Button]][Deploy Node/CognitiveServices-Knowledge/QnA] ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label,comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the [Microsoft Open Source Code of Conduct](https://github.com/kobyrwork/skype-dev-bots/blob/master/https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://github.com/kobyrwork/skype-dev-bots/blob/master/https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](https://github.com/kobyrwork/skype-dev-bots/blob/master/mailto:opencode@microsoft.com) with any additional questions or comments. ## License This project is licensed under the MIT License - see the [LICENSE](https://github.com/kobyrwork/skype-dev-bots/blob/master/LICENSE) file for details. [Deploy Button]: https://azuredeploy.net/deploybutton.png [Deploy Csharp/Fundamentals/DoctorCode]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Csharp/Fundamentals/DoctorCode [Deploy Node/Fundamentals/DoctorCode]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Node/Fundamentals/DoctorCode [Deploy Csharp/Storage-MongoDB/Notes]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Csharp/Storage-MongoDB/Notes [Deploy Node/Storage-MongoDB/Notes]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Node/Storage-MongoDB/Notes [Deploy Node/CognitiveServices-Language/Fridge]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Node/CognitiveServices-Language/Fridge [Deploy Csharp/CognitiveServices-Knowledge/QnA]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Csharp/CognitiveServices-Knowledge/QnA [Deploy Node/CognitiveServices-Knowledge/QnA]: https://azuredeploy.net?repository=https://github.com/Microsoft/skype-dev-bots/tree/master/Samples/Node/CognitiveServices-Knowledge/QnA

近期下载者

相关文件


收藏者