Skip to content

Olax is an open-source library that enables users to build their GPT plugins using CSharp with minimal effort.

License

Notifications You must be signed in to change notification settings

CodeOfDark/Olax

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Olax

Olax is an open-source library that enables users to build their GPT plugins using CSharp with minimal effort.

Why Olax?

Olax helps you build and host a Chat-GPT plugin with minimal effort, and I assume this is the first library that does so.

Usage

  • 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();

About

Olax is an open-source library that enables users to build their GPT plugins using CSharp with minimal effort.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages