Class FunctionResponse
A predicted FunctionResponse returned from the model that contains a string representing the Name with the arguments and their values.
Inheritance
object
FunctionResponse
Namespace: Glitch9.AIDevKit
Assembly: .dll
Syntax
public class FunctionResponse
Properties
Name
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
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
public object Response { get; set; }
Property Value
Type | Description |
---|---|
object |