Mscc.GenerativeAI 0.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Mscc.GenerativeAI --version 0.3.2
NuGet\Install-Package Mscc.GenerativeAI -Version 0.3.2
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="Mscc.GenerativeAI" Version="0.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mscc.GenerativeAI --version 0.3.2
#r "nuget: Mscc.GenerativeAI, 0.3.2"
#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 Mscc.GenerativeAI as a Cake Addin
#addin nuget:?package=Mscc.GenerativeAI&version=0.3.2

// Install Mscc.GenerativeAI as a Cake Tool
#tool nuget:?package=Mscc.GenerativeAI&version=0.3.2

Gemini AI Client for .NET

Access the Gemini API in Google AI Studio and Google Cloud Vertex AI.

Getting Started

Add the package using the dotnet command line tool in your .NET project folder.

> dotnet add package Mscc.GenerativeAI

Alternatively, if you are working with Visual Studio use the NuGet package manager to add a reference to Mscc.GenerativeAI.

PM> Install-Package Mscc.GenerativeAI

You can then add this code to your sources whenever you need to access any Gemini API provided by Google. This package works for Google AI (Google AI Studio) and Google Cloud Vertex AI.

Examples

Use of Gemini API in either Google AI or Vertex AI is almost identical. The major difference is the way to instantiate the model handling your prompt.

Using Google AI Gemini API

Working with Google AI in your application requires an API key. Get an API key from Google AI Studio.

using Mscc.GenerativeAI;

var apiKey = "your_api_key";

var prompt = "Write a story about a magic backpack.";
var model = new GenerativeModel(apiKey: apiKey, model: Model.GeminiPro);

var response = model.GenerateContent(prompt).Result;
Console.WriteLine(response.Text);

Using Vertex AI Gemini API

Use of Vertex AI requires an account on Google Cloud, a project with billing and Vertex AI API enabled.

using Mscc.GenerativeAI;

var projectId = "your_google_project_id";	// the ID of a project, not its name.
var region = "us-central1";					// see documentation for available regions.
var accessToken = "your_access_token";      // use `gcloud auth application-default print-access-token` to get it.

var prompt = "Write a story about a magic backpack.";
var vertex = new VertexAI(projectId: projectId, region: region);
var model = vertex.GenerativeModel(model: Model.GeminiPro);
model.AccessToken = accessToken;

var response = model.GenerateContent(prompt).Result;
Console.WriteLine(response.Text);

Using the tests

The repository contains a number of test cases for Google AI and Vertex AI. You will find them in the tests folder. They are part of the [GenerativeAI solution]. To run the tests, either enter the relevant information into the appsettings.json, create a new appsettings.user.json file with the same JSON structure in the tests folder, or define the following environment variables

  • GOOGLE_API_KEY
  • GOOGLE_PROJECT_ID
  • GOOGLE_REGION
  • GOOGLE_ACCESS_TOKEN (optional: if absent, gcloud auth application-default print-access-token is executed)

The test cases should provide more insights and use cases on how to use the Mscc.GenerativeAI package in your .NET projects.

Feedback

You can create issues at the https://github.com/mscraftsman/generative-ai repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 is compatible.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Mscc.GenerativeAI:

Package Downloads
Mscc.GenerativeAI.Web

A client for ASP.NET Core designed to consume Gemini AI.

Mscc.GenerativeAI.Google

Gemini AI Client for .NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.0 43 5/15/2024
1.4.0 273 4/22/2024
1.3.0 90 4/18/2024
1.2.0 90 4/16/2024
1.1.4 88 4/15/2024
1.1.3 89 4/12/2024
1.1.2 79 4/11/2024
1.1.1 454 4/10/2024
1.1.0 82 4/9/2024
1.0.1 199 4/1/2024
1.0.0 77 3/30/2024
0.9.4 175 3/29/2024
0.9.3 147 3/28/2024
0.9.1 126 3/26/2024
0.9.0 154 3/23/2024
0.8.4 141 3/21/2024
0.8.3 204 3/20/2024
0.8.2 156 3/20/2024
0.8.1 135 3/20/2024
0.8.0 148 3/20/2024
0.7.2 88 3/18/2024
0.7.1 74 3/18/2024
0.7.0 84 3/15/2024
0.6.1 323 3/11/2024
0.6.0 87 3/11/2024
0.5.4 101 3/7/2024
0.5.3 117 3/7/2024
0.5.2 87 3/6/2024
0.5.1 98 3/5/2024
0.5.0 115 3/5/2024
0.4.5 157 3/3/2024
0.4.4 98 3/1/2024
0.4.3 91 3/1/2024
0.4.2 92 3/1/2024
0.4.1 96 2/29/2024
0.3.2 88 2/29/2024
0.3.1 87 2/29/2024
0.2.1 91 2/29/2024

- Improve package attributes