GenCode 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package GenCode --version 1.0.1
NuGet\Install-Package GenCode -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GenCode" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GenCode --version 1.0.1
#r "nuget: GenCode, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GenCode as a Cake Addin
#addin nuget:?package=GenCode&version=1.0.1

// Install GenCode as a Cake Tool
#tool nuget:?package=GenCode&version=1.0.1

<p align="center"> <img src="https://github.com/pheeca/GenCode/blob/main/Content/Logo Files/For Web/png/Color logo - no background.png" alt="GenCode" width="150"/> </p>

GenCode

AppVeyor GitHub release NuGet package NuGet contributions welcome

License

Description

Note: Not usable at the moment, Avoid usage

The GenCode library is a powerful tool for incorporating advanced language modeling capabilities into your .NET applications. With its easy-to-use API and seamless integration process, this package empowers developers to harness the full potential of natural language processing within their projects. The library supports various language tasks, including text generation, sentiment analysis, and more, and is continuously updated with new features and improvements. Comprehensive documentation and examples are available to facilitate rapid integration and adoption.

Features

  • Easy-to-use API for interacting with advanced language models.
  • Seamless integration into your .NET Standard 2.1 projects.
  • Support for various language tasks, including text generation, sentiment analysis, and more.
  • Comprehensive documentation and examples to facilitate rapid integration and adoption.
  • Support for .NET 6 and above.
  • New features and improvements added regularly.
  • Ability to update object properties using natural language descriptions.
  • images/vision not supported at this time

Installation

You can install GenCode via NuGet Package Manager:

nuget install GenCode

Getting started

Explain how to use your package, provide clear and concise getting started instructions, including any necessary steps.

Prerequisites

.NET Standard 2.1 or above

Usage

Here's an example of how to use GenCode to update an object's properties using a natural language description:

using GenCode;

var story1 = new Story
{
    Id = 1,
    Title = "The Lost Treasure",
    Description = "A group of adventurers embarks on a journey to find a lost treasure hidden deep within a mysterious jungle.",
    CreatedAt = DateTime.Now.AddDays(-30),
    UpdatedAt = DateTime.Now.AddDays(-15)
};
var gencode = new GenCode(apiKey, "https://api.deepinfra.com/v1/openai");
Story result = await gencode.FillObject<Story>("Update Description to be more detailed", story1);
Console.WriteLine(result.Description);

For more examples and detailed documentation, please visit our GitHub repository.

Additional documentation

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Feedback

We welcome feedback from our users! If you have any questions, suggestions, or issues, please open an issue on our GitHub repository or join our Discord channel. You can also follow us on Twitter for updates and announcements.

Changelog

v 0.0.0 - Initial Architechture

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 79 3/28/2024
1.0.1 71 3/24/2024

Initial code