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)


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

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


437
438
439
# File 'sig/types.rbs', line 437

def embedding
  @embedding
end

#modelString (readonly)

Returns the value of attribute model.

Returns:

  • (String)


438
439
440
# File 'sig/types.rbs', line 438

def model
  @model
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


436
437
438
# File 'sig/types.rbs', line 436

def name
  @name
end