chichimom

Results 2 comments of chichimom

```py from ragas.run_config import RunConfig, add_async_retry, add_retry # Configure run_config for docstore run_config = RunConfig(max_retries=15, max_wait=90) generator.set_run_config(run_config) # Use the function with retry logic testset = make_request_with_backoff() ``` Hi @dosu...