Class ResponseItem.LocalShellCall
-
- All Implemented Interfaces:
public final class ResponseItem.LocalShellCall
A tool call to run a command on the local shell.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseItem.LocalShellCall.Builder
A builder for LocalShellCall.
public final class
ResponseItem.LocalShellCall.Action
Execute a shell command on the server.
public final class
ResponseItem.LocalShellCall.Status
The status of the local shell call.
-
Method Summary
Modifier and Type Method Description final String
id()
The unique ID of the local shell call. final ResponseItem.LocalShellCall.Action
action()
Execute a shell command on the server. final String
callId()
The unique ID of the local shell tool call generated by the model. final ResponseItem.LocalShellCall.Status
status()
The status of the local shell call. final JsonValue
_type()
The type of the local shell call. final JsonField<String>
_id()
Returns the raw JSON value of id. final JsonField<ResponseItem.LocalShellCall.Action>
_action()
Returns the raw JSON value of action. final JsonField<String>
_callId()
Returns the raw JSON value of callId. final JsonField<ResponseItem.LocalShellCall.Status>
_status()
Returns the raw JSON value of status. final Map<String, JsonValue>
_additionalProperties()
final ResponseItem.LocalShellCall.Builder
toBuilder()
final ResponseItem.LocalShellCall
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseItem.LocalShellCall.Builder
builder()
Returns a mutable builder for constructing an instance of LocalShellCall. -
-
Method Detail
-
action
final ResponseItem.LocalShellCall.Action action()
Execute a shell command on the server.
-
status
final ResponseItem.LocalShellCall.Status status()
The status of the local shell call.
-
_type
final JsonValue _type()
The type of the local shell call. Always
local_shell_call
.Expected to always return the following:
JsonValue.from("local_shell_call")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_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.
-
_action
final JsonField<ResponseItem.LocalShellCall.Action> _action()
Returns the raw JSON value of action.
Unlike action, this method doesn't throw if the JSON field has an unexpected type.
-
_callId
final JsonField<String> _callId()
Returns the raw JSON value of callId.
Unlike callId, this method doesn't throw if the JSON field has an unexpected type.
-
_status
final JsonField<ResponseItem.LocalShellCall.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 ResponseItem.LocalShellCall.Builder toBuilder()
-
validate
final ResponseItem.LocalShellCall validate()
-
builder
final static ResponseItem.LocalShellCall.Builder builder()
Returns a mutable builder for constructing an instance of LocalShellCall.
The following fields are required:
.id() .action() .callId() .status()
-
-
-
-