class

OpenAI::LocalShellToolCallOutput

Inherits JSON::Serializable < Reference < Object

The output of a local shell tool call.

Constructors

new(type_value : LocalShellToolCallOutputType = LocalShellToolCallOutputType::LocalShellCallOutput, id : String = "", output : String = "", status : LocalShellToolCallOutputStatus | Nil = nil)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

id

The unique ID of the local shell tool call generated by the model.

Source
id=(id : String)

The unique ID of the local shell tool call generated by the model.

Source
output

A JSON string of the output of the local shell tool call.

Source
output=(output : String)

A JSON string of the output of the local shell tool call.

Source
status
Source
status=(status : LocalShellToolCallOutputStatus | Nil)
Source
type_value

The type of the local shell tool call output. Always local_shell_call_output.

Source
type_value=(type_value : LocalShellToolCallOutputType)

The type of the local shell tool call output. Always local_shell_call_output.

Source