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.
457 |
# File 'sig/types.rbs', line 457
def initialize: (results: Array[SearchResult], model: String) -> void
|
Instance Attribute Details
#model ⇒ String (readonly)
Returns the value of attribute model.
455 456 457 |
# File 'sig/types.rbs', line 455 def model @model end |
#results ⇒ Array[SearchResult] (readonly)
Returns the value of attribute results.
454 455 456 |
# File 'sig/types.rbs', line 454 def results @results end |