Olax is an open-source library that enables users to build their GPT plugins using CSharp with minimal effort.
Olax helps you build and host a Chat-GPT plugin with minimal effort, and I assume this is the first library that does so.
- Create a C# project.
- Setup a config
var config = new Config()
{
Logo = @"plugin logo",
Version = "plugin version",
PluginName = "plugin name",
ModelName = "plugin model name",
Description = "plugin description",
Host = "host",
Port = port,
ContactEmail = "your contact email",
LegalUrlInfo = "your website info"
};
- Create an instance of OlaxContext
var olax = new OlaxContext(config, false);
- Add your routes
olax.Routes.Add(...);
- Host your plugin
olax.Start();