Mscc.GenerativeAI
0.5.4
See the version list below for details.
dotnet add package Mscc.GenerativeAI --version 0.5.4
NuGet\Install-Package Mscc.GenerativeAI -Version 0.5.4
<PackageReference Include="Mscc.GenerativeAI" Version="0.5.4" />
paket add Mscc.GenerativeAI --version 0.5.4
#r "nuget: Mscc.GenerativeAI, 0.5.4"
// Install Mscc.GenerativeAI as a Cake Addin #addin nuget:?package=Mscc.GenerativeAI&version=0.5.4 // Install Mscc.GenerativeAI as a Cake Tool #tool nuget:?package=Mscc.GenerativeAI&version=0.5.4
Gemini AI Client for .NET and ASP.NET Core
Access the Gemini API in Google AI Studio and Google Cloud Vertex AI.
Read more about Mscc.GenerativeAI.Web and how to add it to your ASP.NET web applications.
Install the package
Install the package Mscc.GenerativeAI from NuGet. You can install the package from the command line using either the command line or the NuGet Package Manager Console. Or you add it directly to your .NET project.
Add the package using the dotnet
command line tool in your .NET project folder.
> dotnet add package Mscc.GenerativeAI
Working with Visual Studio use the NuGet Package Manager to install the package Mscc.GenerativeAI.
PM> Install-Package Mscc.GenerativeAI
Alternatively, add the following line to your .csproj
file.
<ItemGroup>
<PackageReference Include="Mscc.GenerativeAI" Version="0.5.4" />
</ItemGroup>
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.
Authentication use cases
The package supports the following use cases to authenticate.
- Google AI: Authentication with an API key
- Google AI: Authentication with OAuth
- Vertex AI: Authentication with Application Default Credentials (ADC)
This applies mainly to the instantiation procedure.
Getting Started
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.
Choose an API and authentication mode
Google AI with an API key
using Mscc.GenerativeAI;
// Google AI with an API key
var model = new GenerativeModel(apiKey: "your API key", model: Model.GeminiPro);
Google AI with OAuth. Use gcloud auth application-default print-access-token
to get the access token.
using Mscc.GenerativeAI;
// Google AI with OAuth. Use `gcloud auth application-default print-access-token` to get the access token.
var model = new GenerativeModel(model: Model.GeminiPro);
model.AccessToken = accessToken;
Vertex AI with OAuth. Use gcloud auth application-default print-access-token
to get the access token.
using Mscc.GenerativeAI;
// Vertex AI with OAuth. Use `gcloud auth application-default print-access-token` to get the access token.
var vertex = new VertexAI(projectId: projectId, region: region);
var model = vertex.GenerativeModel(model: Model.Gemini10Pro);
model.AccessToken = accessToken;
The ConfigurationFixture
type in the test project implements multiple options to retrieve sensitive information, ie. API key or access token.
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);
More examples
Chat conversations
Gemini enables you to have freeform conversations across multiple turns. You can interact with Gemini Pro using a single-turn prompt and response or chat with it in a multi-turn, continuous conversation, even for code understanding and generation.
using Mscc.GenerativeAI;
var apiKey = "your_api_key";
var model = new GenerativeModel(apiKey: apiKey); // using default model: gemini-pro
var chat = model.StartChat();
// Instead of discarding you could also use the response and access `response.Text`.
_ = await chat.SendMessage("Hello, fancy brainstorming about IT?");
_ = await chat.SendMessage("In one sentence, explain how a computer works to a young child.");
_ = await chat.SendMessage("Okay, how about a more detailed explanation to a high schooler?");
_ = await chat.SendMessage("Lastly, give a thorough definition for a CS graduate.");
// A chat session keeps every response in its history.
chat.History.ForEach(c => Console.WriteLine($"{c.Role}: {c.Parts[0].Text}"));
The folders samples and tests contain more examples.
- Simple console application
- ASP.NET Core Minimal web application
- ASP.NET Core MVP web application (work in progress!)
Troubleshooting
Sometimes you might have authentication warnings. You can fix it by re-authenticating through ADC.
gcloud config set project "$PROJECT_ID"
gcloud auth application-default set-quota-project "$PROJECT_ID"
gcloud auth application-default login
Make sure that the required API have been enabled.
# ENABLE APIs
gcloud services enable aiplatform.googleapis.com
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 | Versions 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. |
-
.NETFramework 4.7.2
- Nullable (>= 1.3.1)
- System.Text.Json (>= 8.0.2)
-
.NETStandard 2.0
- Nullable (>= 1.3.1)
- System.Text.Json (>= 8.0.2)
-
net6.0
- System.Text.Json (>= 8.0.2)
-
net7.0
- System.Text.Json (>= 8.0.2)
-
net8.0
- System.Text.Json (>= 8.0.2)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Mscc.GenerativeAI:
Package | Downloads |
---|---|
Mscc.GenerativeAI.Google
Gemini AI Client for .NET |
|
Mscc.GenerativeAI.Web
A client for ASP.NET Core designed to consume Gemini AI. |
|
fsEnsemble
Package Description |
|
Mscc.GenerativeAI.Microsoft
Gemini AI Client for .NET |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Mscc.GenerativeAI:
Repository | Stars |
---|---|
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
|
Version | Downloads | Last updated |
---|---|---|
1.9.0 | 139 | 11/4/2024 |
1.8.3 | 184 | 11/1/2024 |
1.8.2 | 85 | 10/31/2024 |
1.8.1 | 233 | 10/30/2024 |
1.8.0 | 170 | 10/29/2024 |
1.7.0 | 290 | 10/14/2024 |
1.6.5 | 265 | 10/13/2024 |
1.6.4 | 504 | 10/9/2024 |
1.6.3 | 577 | 9/24/2024 |
1.6.2 | 125 | 9/19/2024 |
1.6.1 | 198 | 9/18/2024 |
1.6.0 | 732 | 8/29/2024 |
1.5.1 | 340 | 7/31/2024 |
1.5.0 | 2,267 | 5/15/2024 |
1.4.0 | 364 | 4/22/2024 |
1.3.0 | 119 | 4/18/2024 |
1.2.0 | 111 | 4/16/2024 |
1.1.4 | 141 | 4/15/2024 |
1.1.3 | 111 | 4/12/2024 |
1.1.2 | 100 | 4/11/2024 |
1.1.1 | 1,747 | 4/10/2024 |
1.1.0 | 93 | 4/9/2024 |
1.0.1 | 270 | 4/1/2024 |
1.0.0 | 98 | 3/30/2024 |
0.9.4 | 281 | 3/29/2024 |
0.9.3 | 200 | 3/28/2024 |
0.9.1 | 193 | 3/26/2024 |
0.9.0 | 205 | 3/23/2024 |
0.8.4 | 191 | 3/21/2024 |
0.8.3 | 252 | 3/20/2024 |
0.8.2 | 205 | 3/20/2024 |
0.8.1 | 221 | 3/20/2024 |
0.8.0 | 215 | 3/20/2024 |
0.7.2 | 112 | 3/18/2024 |
0.7.1 | 99 | 3/18/2024 |
0.7.0 | 110 | 3/15/2024 |
0.6.1 | 445 | 3/11/2024 |
0.6.0 | 115 | 3/11/2024 |
0.5.4 | 125 | 3/7/2024 |
0.5.3 | 147 | 3/7/2024 |
0.5.2 | 112 | 3/6/2024 |
0.5.1 | 125 | 3/5/2024 |
0.5.0 | 157 | 3/5/2024 |
0.4.5 | 203 | 3/3/2024 |
0.4.4 | 122 | 3/1/2024 |
0.4.3 | 119 | 3/1/2024 |
0.4.2 | 118 | 3/1/2024 |
0.4.1 | 114 | 2/29/2024 |
0.3.2 | 111 | 2/29/2024 |
0.3.1 | 102 | 2/29/2024 |
0.2.1 | 114 | 2/29/2024 |
- add embeddings
- refactor handling of parts
- brief sanity check on model selection
- ⛳ allow configuration, safety settings and tools for Chat