Class ToolOutput
Tool function call output
public sealed class ToolOutput
- Inheritance
-
ToolOutput
- Inherited Members
Constructors
ToolOutput(string, string)
Constructor.
[JsonConstructor]
public ToolOutput(string toolCallId, string output)
Parameters
toolCallId
stringThe ID of the tool call in the RequiredAction within the RunResponse the output is being submitted for.
output
stringThe output of the tool call to be submitted to continue the run.
Properties
Output
The output of the tool call to be submitted to continue the run.
[JsonPropertyName("output")]
public string Output { get; }
Property Value
ToolCallId
The ID of the tool call in the RequiredAction within the RunResponse the output is being submitted for.
[JsonPropertyName("tool_call_id")]
public string ToolCallId { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.