Class: LiterLlm::SearchRequest
- Inherits:
-
Object
- Object
- LiterLlm::SearchRequest
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#country ⇒ String?
Returns the value of attribute country.
-
#max_results ⇒ Integer?
Returns the value of attribute max_results.
-
#model ⇒ String?
Returns the value of attribute model.
-
#query ⇒ String?
Returns the value of attribute query.
-
#search_domain_filter ⇒ Array[String]?
Returns the value of attribute search_domain_filter.
Instance Method Summary collapse
-
#initialize ⇒ SearchRequest
constructor
A new instance of SearchRequest.
Constructor Details
#initialize ⇒ SearchRequest
Returns a new instance of SearchRequest.
450 |
# File 'sig/types.rbs', line 450
def initialize: (?model: String, ?query: String, ?max_results: Integer, ?search_domain_filter: Array[String], ?country: String) -> void
|
Instance Attribute Details
#country ⇒ String?
Returns the value of attribute country.
448 449 450 |
# File 'sig/types.rbs', line 448 def country @country end |
#max_results ⇒ Integer?
Returns the value of attribute max_results.
446 447 448 |
# File 'sig/types.rbs', line 446 def max_results @max_results end |
#model ⇒ String?
Returns the value of attribute model.
444 445 446 |
# File 'sig/types.rbs', line 444 def model @model end |
#query ⇒ String?
Returns the value of attribute query.
445 446 447 |
# File 'sig/types.rbs', line 445 def query @query end |
#search_domain_filter ⇒ Array[String]?
Returns the value of attribute search_domain_filter.
447 448 449 |
# File 'sig/types.rbs', line 447 def search_domain_filter @search_domain_filter end |