Class ToolCall
- Namespace
- OpenAI.ObjectModels.RequestModels
- Assembly
- AntRunnerLib.dll
public class ToolCall
- Inheritance
-
System.ObjectToolCall
- 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
FunctionCall
The function that the model called.
[JsonPropertyName("function")]
public FunctionCall FunctionCall { get; set; }
Property Value
Id
The ID of the tool call.
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
- System.String
Index
The Index of the tool call.
[JsonPropertyName("index")]
public int Index { get; set; }
Property Value
- System.Int32
Type
The type of the tool. Currently, only function is supported.
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
- System.String