Class ToolOutputsSubmission
When a run has the status: RequiresAction and Type is SubmitToolOutputs, this endpoint can be used to submit the outputs from the tool calls once they're all completed.
All outputs must be submitted in a single request.
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class ToolOutputsSubmission
Remarks
Properties
| Edit this page View SourceStream
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.
Declaration
[JsonProperty("stream")]
public bool? Stream { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
ToolCalls
A list of tools for which the outputs are being submitted.
Declaration
[JsonProperty("tool_calls")]
public ToolCall[] ToolCalls { get; set; }
Property Value
| Type | Description |
|---|---|
| ToolCall[] |