Class: LiterLlm::IntentPrototype

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeIntentPrototype

Returns a new instance of IntentPrototype.

Parameters:

  • name: (String)
  • embedding: (Array[Float])
  • model: (String)


819
# File 'sig/types.rbs', line 819

def initialize: (name: String, embedding: Array[Float], model: String) -> void

Instance Attribute Details

#embeddingArray[Float] (readonly)

Returns the value of attribute embedding.

Returns:

  • (Array[Float])


816
817
818
# File 'sig/types.rbs', line 816

def embedding
  @embedding
end

#modelString (readonly)

Returns the value of attribute model.

Returns:

  • (String)


817
818
819
# File 'sig/types.rbs', line 817

def model
  @model
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


815
816
817
# File 'sig/types.rbs', line 815

def name
  @name
end