Class FunctionResponse
A predicted FunctionResponse returned from the model that contains a string representing the Name with the arguments and their values.
Inherited Members
Namespace: Glitch9.AIDevKit.Google
Assembly: Glitch9.AIDevKit.Provider.Google.dll
Syntax
public class FunctionResponse
Properties
| Edit this page View SourceName
Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 63.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Response
Only appears in response. The function parameters and values in JSON object format.
Declaration
[JsonProperty("response")]
public string Response { get; set; }
Property Value
| Type | Description |
|---|---|
| string |