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)


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

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])


813
814
815
# File 'sig/types.rbs', line 813

def embedding
  @embedding
end

#modelString (readonly)

Returns the value of attribute model.

Returns:

  • (String)


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

def model
  @model
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


812
813
814
# File 'sig/types.rbs', line 812

def name
  @name
end