Google_GenerativeAI.Tools
2.4.3
See the version list below for details.
dotnet add package Google_GenerativeAI.Tools --version 2.4.3
NuGet\Install-Package Google_GenerativeAI.Tools -Version 2.4.3
<PackageReference Include="Google_GenerativeAI.Tools" Version="2.4.3" />
<PackageVersion Include="Google_GenerativeAI.Tools" Version="2.4.3" />
<PackageReference Include="Google_GenerativeAI.Tools" />
paket add Google_GenerativeAI.Tools --version 2.4.3
#r "nuget: Google_GenerativeAI.Tools, 2.4.3"
#addin nuget:?package=Google_GenerativeAI.Tools&version=2.4.3
#tool nuget:?package=Google_GenerativeAI.Tools&version=2.4.3
Google_GenerativeAI.Tools
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
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
Install the NuGet package (assuming it's available on NuGet.org):
dotnet add package Google.GenerativeAI.Tools
Reference the package in your project file:
<ItemGroup> <PackageReference Include="Google.GenerativeAI.Tools" Version="x.x.x" /> </ItemGroup>
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
- Fork this repository (if applicable).
- Create a feature branch.
- 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 | Versions 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. |
-
.NETFramework 4.6.2
- CSharpToJsonSchema (>= 3.10.2-dev.29)
- Google_GenerativeAI (>= 2.4.3)
-
.NETStandard 2.0
- CSharpToJsonSchema (>= 3.10.2-dev.29)
- Google_GenerativeAI (>= 2.4.3)
-
net8.0
- CSharpToJsonSchema (>= 3.10.2-dev.29)
- Google_GenerativeAI (>= 2.4.3)
-
net9.0
- CSharpToJsonSchema (>= 3.10.2-dev.29)
- Google_GenerativeAI (>= 2.4.3)
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 |