Table of Contents

Class GeminiFunctionResponse

The result output from a GeminiFunctionCall that contains a string representing the Name and a structured JSON object containing any output from the function is used as context to the model. This should contain the result of a GeminiFunctionCall made based on model prediction.

public class GeminiFunctionResponse
Inheritance
object
GeminiFunctionResponse
Extension Methods

Fields

Id

The id of the function call this response is for. Populated by the client to match the corresponding function call id.

public string Id

Field Value

string

Name

The name of the function.

public string Name

Field Value

string

ResponseData

The actual JSON response data of the function.

public JObject ResponseData

Field Value

JObject