Class Function
- Namespace
- OpenAI.ObjectModels.RequestModels
- Assembly
- AntRunnerLib.dll
public class Function
- Inheritance
-
System.ObjectFunction
- Inherited Members
-
System.Object.Equals(System.Object)System.Object.Equals(System.Object, System.Object)System.Object.GetHashCode()System.Object.GetType()System.Object.MemberwiseClone()System.Object.ReferenceEquals(System.Object, System.Object)System.Object.ToString()
Properties
Arguments
The arguments passed to the function.
[JsonPropertyName("arguments")]
public string Arguments { get; set; }
Property Value
- System.String
Name
The name of the function.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
- System.String
Output
The output of the function. This will be null if the outputs have not been
submitted yet.
[JsonPropertyName("output")]
public string Output { get; set; }
Property Value
- System.String