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)


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

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


904
905
906
# File 'sig/types.rbs', line 904

def embedding
  @embedding
end

#modelString (readonly)

Returns the value of attribute model.

Returns:

  • (String)


905
906
907
# File 'sig/types.rbs', line 905

def model
  @model
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


903
904
905
# File 'sig/types.rbs', line 903

def name
  @name
end