Table of Contents

Class ToolOutput

Namespace
OpenAI.Threads
Assembly
OpenAI-DotNet.dll

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 string

The ID of the tool call in the RequiredAction within the RunResponse the output is being submitted for.

output string

The 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

string

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

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.