Class FunctionCall
public sealed class FunctionCall
- Inheritance
-
FunctionCall
- Inherited Members
Properties
Arguments
The arguments that the model expects you to pass to the function.
[JsonInclude]
[JsonPropertyName("arguments")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Arguments { get; }
Property Value
Name
The name of the function.
[JsonInclude]
[JsonPropertyName("name")]
public string Name { get; }
Property Value
Output
The output of the function. This will be null if the outputs have not been submitted yet.
[JsonInclude]
[JsonPropertyName("output")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Output { get; }