Table of Contents

Class GeminiTool

Tool details that the model may use to generate response.

public class GeminiTool
Inheritance
GeminiTool
Extension Methods

Remarks

A Tool is a piece of code that enables the system to interact with external systems
to perform an action, or set of actions, outside of knowledge and scope of the model.

Fields

CodeExecution

Enables the model to execute code as part of generation.

public GeminiCodeExecution CodeExecution

Field Value

GeminiCodeExecution

FunctionDeclarations

A list of FunctionDeclarations available to the model that can be used for function calling.

public GeminiFunctionDeclaration[] FunctionDeclarations

Field Value

GeminiFunctionDeclaration[]

Remarks

The model or system does not execute the function. Instead the defined function may be returned as
a [GeminiFunctionCall][GeminiContent.FunctionCall] with arguments to the client
side for execution. The model may decide to call a subset of these functions by populating
[GeminiFunctionCall][GeminiContent.FunctionCall] in the response.
The next conversation turn may contain a [GeminiFunctionResponse][GeminiContent.FunctionResponse]
with the [Role] ToolResponse generation context for the next model turn.