Set the maximum number of results
(mut self, max: usize)
| 134 | |
| 135 | /// Set the maximum number of results |
| 136 | pub fn with_max_results(mut self, max: usize) -> Self { |
| 137 | self.max_results = max; |
| 138 | self |
| 139 | } |
| 140 | |
| 141 | /// Set the maximum total tokens |
| 142 | pub fn with_max_tokens(mut self, max: usize) -> Self { |
no outgoing calls