Carl Weaver
Results
2
comments of
Carl Weaver
We can harness the `self.max_results` to limit the search results, for example: ```python for i, res in enumerate(results, 1): snippets.append(res['body']) if i == self.max_results: break return snippets ``` `Generator` is...
I am experiencing the same issue. Is there any update or workaround?