Class: Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request
- Inherits:
-
Object
- Object
- Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request
- Defined in:
- lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb
Overview
FastEmbed vectorizer for BAAI/bge-small-en-v1.5.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #model_name ⇒ String readonly
Class Method Summary collapse
- .from_json(json_object:) ⇒ Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request
- .validate_raw(obj:) ⇒ Void
Instance Method Summary collapse
- #initialize(model_name:, additional_properties: nil) ⇒ Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request constructor
- #to_json ⇒ String
Constructor Details
#initialize(model_name:, additional_properties: nil) ⇒ Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request
21 22 23 24 25 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 21 def initialize(model_name:, additional_properties: nil) @model_name = model_name @additional_properties = additional_properties @_field_set = { "model_name": model_name } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
11 12 13 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 11 def additional_properties @additional_properties end |
#model_name ⇒ String (readonly)
9 10 11 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 9 def model_name @model_name end |
Class Method Details
.from_json(json_object:) ⇒ Vellum::FastEmbedVectorizerBaaiBgeSmallEnV15Request
31 32 33 34 35 36 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 31 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) model_name = parsed_json["model_name"] new(model_name: model_name, additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
50 51 52 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 50 def self.validate_raw(obj:) obj.model_name.is_a?(String) != false || raise("Passed value for field obj.model_name is not the expected type, validation failed.") end |
Instance Method Details
#to_json ⇒ String
41 42 43 |
# File 'lib/vellum_ai/types/fast_embed_vectorizer_baai_bge_small_en_v_15_request.rb', line 41 def to_json @_field_set&.to_json end |