Junaid.GoogleGemini.Net 1.0.4

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

// Install Junaid.GoogleGemini.Net as a Cake Tool
#tool nuget:?package=Junaid.GoogleGemini.Net&version=1.0.4

Junaid.GoogleGemini.Net

An open-source .NET library to use Gemini API based on Google�s largest and most capable AI model yet.

Installation of Nuget Package

.NET CLI:

> dotnet add package Junaid.GoogleGemini.Net

Package Manager:

PM > Install-Package Junaid.GoogleGemini.Net

Usage

Authentication

Get an API key from Google's AI Studio here.

There are three ways of setting the API key.

  • Use GeminiConfiguration.ApiKey property to set the secret API key directly in your application code.
GeminiConfiguration.ApiKey = "xxxxxxxxxxxxxxxxx";
  • You can pass the API key as an envrionment variable named "GeminiApiKey" as well.

  • If you are using an App.config file, you can pass the API key as "GeminiApiKey" field as well.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<appSettings>
		<add key="GeminiApiKey" value="xxxxxxxxxxxxxxxxx" />
	</appSettings>
</configuration>

TextService

TextService is used to generate text-only content. The GenereateContentAsync method takes a mandatory string (text prompt) as an argument and returns the textual data.

An optional argument named configuration of GenerateContentConfiguration type can also be passed to the above method GenereateContentAsync. For information on its usage navigate to configuration section of this page.

var service = new TextService();
var result = await service.GenereateContentAsync("Say Hi to me!");
Console.WriteLine(result.Text());

The GenereateContentAsync method returns GenerateContentResponse object. To just get the text string inside this object, use the method Text() as shown in the code snippet above.

VisionService

VisionService is used to generate content with both text and image inputs. The GenereateContentAsync method takes a string (text prompt) and FileObject (file bytes and file name) as an argument and returns the textual data.

An optional argument named configuration of GenerateContentConfiguration type can also be passed to the above method GenereateContentAsync. For information on its usage navigate to configuration section of this page.

string filePath = "path/<imageName.imageExtension>";
var fileName = Path.GetFileName(filePath);
byte[] fileBytes = Array.Empty<byte>();
try
{
    using (var imageStream = new FileStream(filePath, FileMode.Open, FileAccess.Read))
    using (var memoryStream = new MemoryStream())
    {
        imageStream.CopyTo(memoryStream);
        fileBytes = memoryStream.ToArray();
    }
    Console.WriteLine($"Image loaded successfully. Byte array length: {fileBytes.Length}");
}
catch (Exception ex)
{
    Console.WriteLine($"Error: {ex.Message}");
}

var service = new VisionService();
var result = await service.GenereateContentAsync("Explain this image?", new FileObject(fileBytes, fileName));
Console.WriteLine(result.Text());

The GenereateContentAsync method returns GenerateContentResponse object. To just get the text string inside this object, use the method Text() as shown in the code snippet above.

ChatService

ChatService is used to generate freeform conversations across multiple turns with chat history as input. The GenereateContentAsync method takes an array of MessageObject as an argument.

Each MessageObject contains two fields i.e. a string named role (value can be either of "model" or "user" only) and another string named text (text prompt).

An optional argument named configuration of GenerateContentConfiguration type can also be passed to the above method GenereateContentAsync. For information on its usage navigate to configuration section of this page.

var chat = new MessageObject[]
{
    new MessageObject( "user", "Write the first line of a story about a magic backpack." ),
    new MessageObject( "model", "In the bustling city of Meadow brook, lived a young girl named Sophie. She was a bright and curious soul with an imaginative mind." ),
    new MessageObject( "user", "Write one more line." ),
};

var service = new ChatService();
var result = await service.GenereateContentAsync(chat);
Console.WriteLine(result.Text());

The GenereateContentAsync method returns GenerateContentResponse object. To just get the text string inside this object, use the method Text() as shown in the code snippet above.

Configuration

Configuration input can be used to control the content generation by configuring model parameters and by using safety settings.

An example of setting configuration parameter of type GenerateContentConfiguration and passing it to the GenereateContentAsync method of TextService is as follows:

var configuration = new GenerateContentConfiguration
{
    safetySettings = new []
    {
        new SafetySetting
        {
            category = CategoryConstants.DangerousContent,
            threshold = ThresholdConstants.BlockOnlyHigh
        }
    },
    generationConfig = new GenerationConfig
    {
        stopSequences = new List<string> { "Title" },
        temperature = 1.0,
        maxOutputTokens = 800,
        topP = 0.8,
        topK = 10
    }
};

var service = new TextService();
var result = await service.GenereateContentAsync("Write a quote by Aristotle.", configuration);
result.Text();

The usage of the configuration parameter is similar in both the ChatService and VisionService.

Contributing

Feel free to improve the library by adding new functionality, removing outdated functionality, updating broken functionality and refactoring code by using better Software Engineering practices, styles and patterns.

Getting Started

  1. Start by forking the repository.
  2. Clone the forked repository.
  3. Create a new branch for your contribution.

Contribution Guidelines

  • Adhere to the established code style within the project.
  • Use meaningful commit messages.
  • Please test your code and document the changes before creating a pull request.
  • Push your changes to your fork and initiate a pull request against the master branch.
  • Ensure your changes do not break existing functionality.
  • While creating issues include detailed information, steps to reproduce the issue and check for existing issues to avoid duplicates.

Feel free to open an issue or contact me via email if you have any questions or suggestions.

Product Compatible and additional computed target framework versions.
.NET 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 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. 
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
4.0.0 701 1/20/2024
3.2.0 202 12/31/2023
3.1.1 96 12/30/2023
3.1.0 93 12/30/2023
3.0.0 89 12/30/2023
2.1.0 84 12/30/2023
2.0.0 90 12/29/2023
1.0.4 111 12/27/2023
1.0.3 98 12/26/2023
1.0.2 94 12/25/2023
1.0.1 112 12/25/2023
1.0.0 89 12/24/2023

Read API key from Environment variables. Refactored services and models. Added Text method to just read the string "text" from the API response.