Class: LiterLlm::SearchRequest
- Inherits:
-
Object
- Object
- LiterLlm::SearchRequest
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#country ⇒ String?
readonly
Returns the value of attribute country.
-
#max_results ⇒ Integer?
readonly
Returns the value of attribute max_results.
-
#model ⇒ String
readonly
Returns the value of attribute model.
-
#query ⇒ String
readonly
Returns the value of attribute query.
-
#search_domain_filter ⇒ Array[String]?
readonly
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.
777 |
# File 'sig/types.rbs', line 777
def initialize: (?model: String, ?query: String, ?max_results: Integer, ?search_domain_filter: Array[String], ?country: String) -> void
|
Instance Attribute Details
#country ⇒ String? (readonly)
Returns the value of attribute country.
775 776 777 |
# File 'sig/types.rbs', line 775 def country @country end |
#max_results ⇒ Integer? (readonly)
Returns the value of attribute max_results.
773 774 775 |
# File 'sig/types.rbs', line 773 def max_results @max_results end |
#model ⇒ String (readonly)
Returns the value of attribute model.
771 772 773 |
# File 'sig/types.rbs', line 771 def model @model end |
#query ⇒ String (readonly)
Returns the value of attribute query.
772 773 774 |
# File 'sig/types.rbs', line 772 def query @query end |
#search_domain_filter ⇒ Array[String]? (readonly)
Returns the value of attribute search_domain_filter.
774 775 776 |
# File 'sig/types.rbs', line 774 def search_domain_filter @search_domain_filter end |