An open API service indexing awesome lists of open source software.

https://github.com/swiftyspiffy/cleverbotlib

Simple .NET library to interface with the Cleverbot API.
https://github.com/swiftyspiffy/cleverbotlib

ai api bot clever cleverbot csharp net

Last synced: 2 months ago
JSON representation

Simple .NET library to interface with the Cleverbot API.

Awesome Lists containing this project

README

          

# CleverbotLib

## About
CleverbotLib is a simple .NET library that is capable of interfacing with the Cleverbot API in an elegant and easy to use fashion. All information provided in the API responses are available to the programmer, and cleverbot state is easily maintained between messages.

## Implementing
Below is a basic ConsoleApplication implementation of CleverbotLib taken directly from the provided example applicaiton.
#### TwitchClient
```csharp
Console.WriteLine("CleverbotLib Example Application");

Console.WriteLine("Insert your API key:");
CleverbotLib.Core.SetAPIKey(Console.ReadLine());

Console.WriteLine("Now begin your conversation!");

CleverbotLib.Models.CleverbotResponse resp = null;
while (true)
{
Console.Write("You: ");
if (resp == null)
resp = CleverbotLib.Core.Talk(Console.ReadLine());
else
resp = CleverbotLib.Core.Talk(Console.ReadLine(), resp);
Console.WriteLine($"Cleverbot: {resp.Output}");
}
```

## Installation

### [NuGet](https://www.nuget.org/packages/CleverbotLib/)

To install this library via NuGet via NuGet console, use:
```
Install-Package CleverbotLib
```
and via Package Manager, simply search:
```
CleverbotLib
```
You are also more than welcome to clone/fork this repo and build the library yourself!

## Dependencies

* Newtonsoft.Json 7.0.1+ ([nuget link](https://www.nuget.org/packages/Newtonsoft.Json/7.0.1))

## License

This project is available under the MIT license. See the LICENSE file for more info.