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