Google_GenerativeAI.Tools 2.5.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Google_GenerativeAI.Tools --version 2.5.3
                    
NuGet\Install-Package Google_GenerativeAI.Tools -Version 2.5.3
                    
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="Google_GenerativeAI.Tools" Version="2.5.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Google_GenerativeAI.Tools" Version="2.5.3" />
                    
Directory.Packages.props
<PackageReference Include="Google_GenerativeAI.Tools" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Google_GenerativeAI.Tools --version 2.5.3
                    
#r "nuget: Google_GenerativeAI.Tools, 2.5.3"
                    
#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.
#addin nuget:?package=Google_GenerativeAI.Tools&version=2.5.3
                    
Install Google_GenerativeAI.Tools as a Cake Addin
#tool nuget:?package=Google_GenerativeAI.Tools&version=2.5.3
                    
Install Google_GenerativeAI.Tools as a Cake Tool

Google_GenerativeAI.Tools

NuGet License: MIT

Google_GenerativeAI.Tools – README

A comprehensive toolkit to seamlessly integrate and structure your Google Gemini function calls in C#. Google_GenerativeAI.Tools is offered as part of the Google_GenerativeAI SDK, supporting multiple modes of usage: either through reflection-based approaches or via code generation.


Table of Contents

  1. Installation
  2. Approaches
  3. Comparison
  4. Contributing
  5. License

Introduction

Google_GenerativeAI.Tools streamlines how you define, discover, and call your functions for Google Gemini.

Key features:

  • Flexible reflection-based or code generation-based approaches.
  • Automatic JSON schema generation for advanced scenarios.
  • Strong typing and maintainability for large projects.
  • NativeAOT-friendly APIs to ensure trimming safety.

Installation

  1. Install the NuGet package (assuming it's available on NuGet.org):

    dotnet add package Google.GenerativeAI.Tools
    
  2. Reference the package in your project file:

    <ItemGroup>
      <PackageReference Include="Google.GenerativeAI.Tools" Version="x.x.x" />
    </ItemGroup>
    
  3. Restore packages:

    dotnet restore
    

Approaches

1. Reflection-Based

This method depends on runtime inspection of methods or delegates to generate the schema and create function tools.

Pros

  • Rapid development.
  • Minimal boilerplate, ideal for smaller or proof-of-concept projects.

Cons

  • Requires manual handling of complex serialization contexts (e.g., JsonSerializerContext) for NativeAOT.
  • Less structured than code generation.
Examples (Reflection-Based)

Use [QuickTool] or [QuickTools] to define reflection-based tools:


public record StudentRecord
{
    public string StudentId { get; set; }
    public string FullName { get; set; }
    // ...
}

// Reflection-based delegate
var func = (async ([Description("Query to retrieve student record")] string fullName) =>
{
    // Implementation detail
    return new StudentRecord
    {
        StudentId = "12345",
        FullName = fullName
    };
});

// Create QuickTool
var quickFt = new QuickTool(func, "GetStudentRecordAsync", "Returns the student record");

var model = new GenerativeModel(/* your config */);
model.AddFunctionTool(quickFt);

// Usage
var result = await model.GenerateContentAsync("What's the student record for John Joe?");
Console.WriteLine(result.Text());

2. Code Generator-Based

Code generation automatically produces schemas and extension methods, saving you from manually dealing with reflection or serializer contexts.

Pros

  • Automatic JSON schema creation (bypassing reflection).
  • NativeAOT ready with minimal extra configuration.
  • Clean, strongly typed approach for large or complex projects.

Cons

  • Additional codegen step required.
  • Slightly steeper initial setup.
2.1 Individual Methods

Decorate your methods with [FunctionTool] to generate the needed schemas and integrate them:

[FunctionTool(GoogleFunctionTool = true)]
[Description("Retrieves content of a specific book page")]
public static Task<string> GetBookPageContentAsync(
    string bookName, 
    int pageNumber, 
    CancellationToken cancellationToken = default)
{
    // Implementation
    return Task.FromResult($"Page {pageNumber} of {bookName}");
}

//Usage

var tools = new Tools([GetBookPageContentAsync]);
generativeModel.AddFunctionTool(tools);

Generated code will handle JSON schema definitions and produce extension methods to register with your GenerativeModel.

2.2 Interface-Based

Build an interface to define one or more related methods. The code generator scans [GenerateJsonSchema] attributes to build tooling and registration code:

[GenerateJsonSchema(GoogleFunctionTool = true)]
public interface IWeatherFunctions
{
    [Description("Get current weather in a location")]
    Weather GetCurrentWeather(
        [Description("City and state, e.g. San Francisco, CA")]
        string location, 
        Unit unit = Unit.Celsius);
    // ...   
}

public class WeatherService : IWeatherFunctions
{
    public Weather GetCurrentWeather(string location, Unit unit = Unit.Celsius)
    {
        return new Weather
        {
            Location = location,
            Temperature = 20,
            Unit = unit
        };
    }
}

// Register after code generation
var weatherService = new WeatherService();
var googleTool = weatherService.AsGoogleFunctionTool();
model.AddFunctionTool(googleTool);

Interface Grouping
Group multiple functions in one interface, effectively creating a reusable “plugin.”


Comparison

Aspect Reflection-Based Code Generator-Based
Setup Complexity Low (quick prototyping) Moderate (attributes, interfaces, codegen)
Serialization Handling Manual (must define JsonSerializerContext for complex) Automatic via generated code
NativeAOT / Trimming Extra steps to preserve reflection data Designed for AOT; minimal extra configuration
Grouping Multiple Methods Possible, but less structured Interface-based approach naturally groups multiple methods as a reusable plugin
Use Cases Small or short-lived projects, quick PoCs Enterprise solutions with complex needs requiring maintainability and strong typing

Checkout Wiki Page for more in depth example uses


Contributing

  1. Fork this repository (if applicable).
  2. Create a feature branch.
  3. Submit a pull request describing your changes.

Please add tests and documentation for any new features.


License

This project is available under [MIT] License. Refer to the LICENSE file for more details.

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 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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

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
2.5.5 97 4/4/2025
2.5.3 119 4/3/2025
2.5.2 102 4/2/2025
2.5.0 115 4/2/2025
2.4.6 263 3/23/2025
2.4.5 114 3/22/2025
2.4.4 120 3/22/2025
2.4.3 137 3/13/2025
2.4.2 163 3/12/2025
2.4.1 128 3/11/2025
2.4.0 142 3/10/2025
2.3.0 131 3/1/2025
2.2.0 109 2/23/2025
2.1.5 92 2/22/2025
2.1.4 91 2/22/2025
2.1.3 90 2/21/2025
2.1.2 86 2/21/2025
2.1.1 85 2/21/2025
2.0.14 95 2/19/2025
2.0.11 104 2/18/2025
2.0.7 107 2/17/2025
2.0.6 224 2/17/2025
2.0.5 93 2/16/2025
2.0.4 82 2/16/2025
2.0.2 91 2/16/2025
2.0.0 101 2/16/2025