Class: OpenAI::Models::Responses::ResponseComputerToolCall::PendingSafetyCheck

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/openai/models/responses/response_computer_tool_call.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(id:, call_id:, pending_safety_checks:, status:, type:, action: nil, actions: nil) ⇒ Object

Some parameter documentations has been truncated, see OpenAI::Models::Responses::ResponseComputerToolCall for more details.

A tool call to a computer use tool. See the [computer use guide](platform.openai.com/docs/guides/tools-computer-use) for more information.

Parameters:

  • The unique ID of the computer call.

  • An identifier used when responding to the tool call with output.

  • The pending safety checks for the computer call.

  • The status of the item. One of in_progress, completed, or

  • The type of the computer call. Always computer_call.

  • (defaults to: nil)

    A click action.

  • (defaults to: nil)

    Flattened batched actions for computer_use. Each action includes an



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/openai/models/responses/response_computer_tool_call.rb', line 74

class PendingSafetyCheck < OpenAI::Internal::Type::BaseModel
  # @!attribute id
  #   The ID of the pending safety check.
  #
  #   @return [String]
  required :id, String

  # @!attribute code
  #   The type of the pending safety check.
  #
  #   @return [String, nil]
  optional :code, String, nil?: true

  # @!attribute message
  #   Details about the pending safety check.
  #
  #   @return [String, nil]
  optional :message, String, nil?: true

  # @!method initialize(id:, code: nil, message: nil)
  #   A pending safety check for the computer call.
  #
  #   @param id [String] The ID of the pending safety check.
  #
  #   @param code [String, nil] The type of the pending safety check.
  #
  #   @param message [String, nil] Details about the pending safety check.
end

Instance Attribute Details

#codeString?

The type of the pending safety check.

Returns:



85
# File 'lib/openai/models/responses/response_computer_tool_call.rb', line 85

optional :code, String, nil?: true

#idString

The ID of the pending safety check.

Returns:



79
# File 'lib/openai/models/responses/response_computer_tool_call.rb', line 79

required :id, String

#messageString?

Details about the pending safety check.

Returns:



91
# File 'lib/openai/models/responses/response_computer_tool_call.rb', line 91

optional :message, String, nil?: true