Table of Contents

Class SubmitToolOutputsToRunRequest

Namespace
OpenAI.ObjectModels.RequestModels
Assembly
AntRunnerLib.dll
public class SubmitToolOutputsToRunRequest
Inheritance
System.Object
SubmitToolOutputsToRunRequest
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

Stream

If true, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a data: [DONE] message.

[JsonPropertyName("stream")]
public bool? Stream { get; set; }

Property Value

System.Nullable<System.Boolean>

ToolOutputs

A list of tools for which the outputs are being submitted.

[Required]
[JsonPropertyName("tool_outputs")]
public List<ToolOutput> ToolOutputs { get; set; }

Property Value

List<ToolOutput>