Module: OpenAI::Models::Beta::Threads::Message::Attachment::Tool

Extended by:
Internal::Type::Union
Defined in:
lib/openai/models/beta/threads/message.rb

Defined Under Namespace

Classes: AssistantToolsFileSearchTypeOnly

Instance Method Summary collapse

Methods included from Internal::Type::Union

==, ===, coerce, dump, hash, inspect, to_sorbet_type, variants

Methods included from Internal::Util::SorbetRuntimeSupport

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

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, type_info

Instance Method Details

#initialize(file_id: nil, tools: nil) ⇒ Object

Parameters:



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/openai/models/beta/threads/message.rb', line 165

module Tool
  extend OpenAI::Internal::Type::Union

  variant -> { OpenAI::Beta::CodeInterpreterTool }

  variant -> {
    OpenAI::Beta::Threads::Message::Attachment::Tool::AssistantToolsFileSearchTypeOnly
  }

  class AssistantToolsFileSearchTypeOnly < OpenAI::Internal::Type::BaseModel
    # @!attribute type
    #   The type of tool being defined: `file_search`
    #
    #   @return [Symbol, :file_search]
    required :type, const: :file_search

    # @!method initialize(type: :file_search)
    #   @param type [Symbol, :file_search] The type of tool being defined: `file_search`
  end

  # @!method self.variants
  #   @return [Array(OpenAI::Models::Beta::CodeInterpreterTool, OpenAI::Models::Beta::Threads::Message::Attachment::Tool::AssistantToolsFileSearchTypeOnly)]
end