Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oceania2018/turing.net
Turing Robot .NET SDK
https://github.com/oceania2018/turing.net
chatbot tuling turing
Last synced: 17 days ago
JSON representation
Turing Robot .NET SDK
- Host: GitHub
- URL: https://github.com/oceania2018/turing.net
- Owner: Oceania2018
- License: apache-2.0
- Created: 2018-10-20T04:23:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T15:43:41.000Z (about 6 years ago)
- Last Synced: 2024-12-24T16:26:49.156Z (23 days ago)
- Topics: chatbot, tuling, turing
- Language: C#
- Homepage: http://www.tuling123.com
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# turing.net
Turing Robot (图灵机器人) .NET SDK http://www.tuling123.comHow to install:
```
PM> Install-Package Turing.NET
```
How to use:
```
var turing = new TuringAgent(config);
var tulingResponse = turing.Request(new TuringRequest
{
Perception = new TuringRequestPerception
{
InputText = new TuringInputText { Text = request.Text }
}
});
```API Docs: https://www.kancloud.cn/turing/www-tuling123-com/718227