Class: OpenAI::Models::Responses::ResponseFunctionToolCall
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Responses::ResponseFunctionToolCall
- Defined in:
- lib/openai/models/responses/response_function_tool_call.rb
Direct Known Subclasses
Defined Under Namespace
Modules: Status
Instance Attribute Summary collapse
-
#arguments ⇒ String
A JSON string of the arguments to pass to the function.
-
#call_id ⇒ String
The unique ID of the function tool call generated by the model.
-
#id ⇒ String?
The unique ID of the function tool call.
-
#name ⇒ String
The name of the function to run.
-
#status ⇒ Symbol, ...
The status of the item.
-
#type ⇒ Symbol, :function_call
The type of the function tool call.
Instance Method Summary collapse
-
#initialize(arguments: , call_id: , name: , id: nil, status: nil, type: :function_call) ⇒ Object
constructor
Some parameter documentations has been truncated, see ResponseFunctionToolCall 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, 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(arguments: , call_id: , name: , id: nil, status: nil, type: :function_call) ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::Responses::ResponseFunctionToolCall for more details.
A tool call to run a function. See the [function calling guide](platform.openai.com/docs/guides/function-calling) for more information.
|
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 44
|
Instance Attribute Details
#arguments ⇒ String
A JSON string of the arguments to pass to the function.
11 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 11 required :arguments, String |
#call_id ⇒ String
The unique ID of the function tool call generated by the model.
17 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 17 required :call_id, String |
#id ⇒ String?
The unique ID of the function tool call.
35 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 35 optional :id, String |
#name ⇒ String
The name of the function to run.
23 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 23 required :name, String |
#status ⇒ Symbol, ...
The status of the item. One of ‘in_progress`, `completed`, or `incomplete`. Populated when items are returned via API.
42 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 42 optional :status, enum: -> { OpenAI::Responses::ResponseFunctionToolCall::Status } |
#type ⇒ Symbol, :function_call
The type of the function tool call. Always ‘function_call`.
29 |
# File 'lib/openai/models/responses/response_function_tool_call.rb', line 29 required :type, const: :function_call |