Set the retrieval depth
(mut self, depth: ContextDepth)
| 128 | |
| 129 | /// Set the retrieval depth |
| 130 | pub fn with_depth(mut self, depth: ContextDepth) -> Self { |
| 131 | self.depth = depth; |
| 132 | self |
| 133 | } |
| 134 | |
| 135 | /// Set the maximum number of results |
| 136 | pub fn with_max_results(mut self, max: usize) -> Self { |
no outgoing calls