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.
Below is a basic ConsoleApplication implementation of CleverbotLib taken directly from the provided example applicaiton.
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}");
}
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!
- Newtonsoft.Json 7.0.1+ (nuget link)
This project is available under the MIT license. See the LICENSE file for more info.