Table of Contents

Class FunctionResponse

A predicted FunctionResponse returned from the model that contains a string representing the Name with the arguments and their values.

public class FunctionResponse
Inheritance
object
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.

public string Name { get; set; }

Property Value

string

Response

Only appears in response. The function parameters and values in JSON object format.

public object Response { get; set; }

Property Value

object