Class ResponseInputItem.LocalShellCallOutput
-
- All Implemented Interfaces:
public final class ResponseInputItem.LocalShellCallOutput
The output of a local shell tool call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseInputItem.LocalShellCallOutput.Builder
A builder for LocalShellCallOutput.
public final class
ResponseInputItem.LocalShellCallOutput.Status
The status of the item. One of
in_progress
,completed
, orincomplete
.
-
Method Summary
Modifier and Type Method Description final String
id()
The unique ID of the local shell tool call generated by the model. final String
output()
A JSON string of the output of the local shell tool call. final JsonValue
_type()
The type of the local shell tool call output. final Optional<ResponseInputItem.LocalShellCallOutput.Status>
status()
The status of the item. final JsonField<String>
_id()
Returns the raw JSON value of id. final JsonField<String>
_output()
Returns the raw JSON value of output. final JsonField<ResponseInputItem.LocalShellCallOutput.Status>
_status()
Returns the raw JSON value of status. final Map<String, JsonValue>
_additionalProperties()
final ResponseInputItem.LocalShellCallOutput.Builder
toBuilder()
final ResponseInputItem.LocalShellCallOutput
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseInputItem.LocalShellCallOutput.Builder
builder()
Returns a mutable builder for constructing an instance of LocalShellCallOutput. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the local shell tool call output. Always
local_shell_call_output
.Expected to always return the following:
JsonValue.from("local_shell_call_output")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
status
final Optional<ResponseInputItem.LocalShellCallOutput.Status> status()
The status of the item. One of
in_progress
,completed
, orincomplete
.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_output
final JsonField<String> _output()
Returns the raw JSON value of output.
Unlike output, this method doesn't throw if the JSON field has an unexpected type.
-
_status
final JsonField<ResponseInputItem.LocalShellCallOutput.Status> _status()
Returns the raw JSON value of status.
Unlike status, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseInputItem.LocalShellCallOutput.Builder toBuilder()
-
validate
final ResponseInputItem.LocalShellCallOutput validate()
-
builder
final static ResponseInputItem.LocalShellCallOutput.Builder builder()
Returns a mutable builder for constructing an instance of LocalShellCallOutput.
The following fields are required:
.id() .output()
-
-
-
-