Class: LiterLlm::SearchResponse
- Inherits:
-
Object
- Object
- LiterLlm::SearchResponse
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#model ⇒ String
readonly
Returns the value of attribute model.
-
#results ⇒ Array[SearchResult]
readonly
Returns the value of attribute results.
Instance Method Summary collapse
-
#initialize ⇒ SearchResponse
constructor
A new instance of SearchResponse.
Constructor Details
#initialize ⇒ SearchResponse
Returns a new instance of SearchResponse.
454 |
# File 'sig/types.rbs', line 454
def initialize: (results: Array[SearchResult], model: String) -> void
|
Instance Attribute Details
#model ⇒ String (readonly)
Returns the value of attribute model.
452 453 454 |
# File 'sig/types.rbs', line 452 def model @model end |
#results ⇒ Array[SearchResult] (readonly)
Returns the value of attribute results.
451 452 453 |
# File 'sig/types.rbs', line 451 def results @results end |