Module: VeniceClient::CreateEmbeddingRequestSchemaInput

Defined in:
lib/venice_client/models/create_embedding_request_schema_input.rb

Overview

Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (8192 tokens), cannot be an empty string, and any array must be 2048 dimensions or less.

Class Method Summary collapse

Class Method Details

.build(data) ⇒ Object

Builds the object

Parameters:

  • Data (Mixed)

    to be matched against the list of anyOf items

Returns:

  • (Object)

    Returns the model or the data itself



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/venice_client/models/create_embedding_request_schema_input.rb', line 33

def build(data)
  # Go through the list of anyOf items and attempt to identify the appropriate one.
  # Note:
  # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
  #   due to the way the deserialization is made in the base_object template (it just casts without verifying).
  # - TODO: scalar values are de facto behaving as if they were nullable.
  # - TODO: logging when debugging is set.
  openapi_any_of.each do |klass|
    begin
      next if klass == :AnyType # "nullable: true"
      typed_data = find_and_cast_into_type(klass, data)
      return typed_data if typed_data
    rescue # rescue all errors so we keep iterating even if the current item lookup raises
    end
  end

  openapi_any_of.include?(:AnyType) ? data : nil
end

.openapi_any_ofObject

List of class defined in anyOf (OpenAPI v3)



21
22
23
24
25
26
27
28
# File 'lib/venice_client/models/create_embedding_request_schema_input.rb', line 21

def openapi_any_of
  [
    :'Array<Array<Integer>>',
    :'Array<Integer>',
    :'Array<String>',
    :'String'
  ]
end