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.
460 |
# File 'sig/types.rbs', line 460
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.
458 459 460 |
# File 'sig/types.rbs', line 458 def country @country end |
#max_results ⇒ Integer? (readonly)
Returns the value of attribute max_results.
456 457 458 |
# File 'sig/types.rbs', line 456 def max_results @max_results end |
#model ⇒ String (readonly)
Returns the value of attribute model.
454 455 456 |
# File 'sig/types.rbs', line 454 def model @model end |
#query ⇒ String (readonly)
Returns the value of attribute query.
455 456 457 |
# File 'sig/types.rbs', line 455 def query @query end |
#search_domain_filter ⇒ Array[String]? (readonly)
Returns the value of attribute search_domain_filter.
457 458 459 |
# File 'sig/types.rbs', line 457 def search_domain_filter @search_domain_filter end |