Finds rows where success is FALSE or NA in the output of call_llm_par(),
re-runs them, and patches the results back into the original data frame.
Arguments
- results
Output from
call_llm_par()(must containconfig,messages, andsuccesscolumns).- tries
Number of retries per call. Default 3.
- ...
Passed to
call_llm_par().
Examples
if (FALSE) { # \dontrun{
results <- call_llm_par(experiments)
results <- llm_par_resume(results, tries = 3)
} # }