Class: OpenAI::Models::Realtime::ResponseFunctionCallArgumentsDeltaEvent
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Realtime::ResponseFunctionCallArgumentsDeltaEvent
- Defined in:
- lib/openai/models/realtime/response_function_call_arguments_delta_event.rb
Instance Attribute Summary collapse
-
#call_id ⇒ String
The ID of the function call.
-
#delta ⇒ String
The arguments delta as a JSON string.
-
#event_id ⇒ String
The unique ID of the server event.
-
#item_id ⇒ String
The ID of the function call item.
-
#output_index ⇒ Integer
The index of the output item in the response.
-
#response_id ⇒ String
The ID of the response.
-
#type ⇒ Symbol, :"response.function_call_arguments.delta"
The event type, must be ‘response.function_call_arguments.delta`.
Instance Method Summary collapse
-
#initialize(call_id:, delta:, event_id:, item_id:, output_index:, response_id:, type: :"response.function_call_arguments.delta") ⇒ Object
constructor
Some parameter documentations has been truncated, see ResponseFunctionCallArgumentsDeltaEvent for more details.
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(call_id:, delta:, event_id:, item_id:, output_index:, response_id:, type: :"response.function_call_arguments.delta") ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::Realtime::ResponseFunctionCallArgumentsDeltaEvent for more details.
Returned when the model-generated function call arguments are updated.
|
|
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 49
|
Instance Attribute Details
#call_id ⇒ String
The ID of the function call.
11 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 11 required :call_id, String |
#delta ⇒ String
The arguments delta as a JSON string.
17 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 17 required :delta, String |
#event_id ⇒ String
The unique ID of the server event.
23 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 23 required :event_id, String |
#item_id ⇒ String
The ID of the function call item.
29 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 29 required :item_id, String |
#output_index ⇒ Integer
The index of the output item in the response.
35 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 35 required :output_index, Integer |
#response_id ⇒ String
The ID of the response.
41 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 41 required :response_id, String |
#type ⇒ Symbol, :"response.function_call_arguments.delta"
The event type, must be ‘response.function_call_arguments.delta`.
47 |
# File 'lib/openai/models/realtime/response_function_call_arguments_delta_event.rb', line 47 required :type, const: :"response.function_call_arguments.delta" |