This function retrieves the results of a completed Claude batch and updates
the provided list of LLMMessage objects with the responses. It aligns each
response with the original request using the custom_ids generated in send_claude_batch().
Usage
fetch_claude_batch(
.llms,
.batch_id = NULL,
.api_url = "https://api.anthropic.com/",
.dry_run = FALSE,
.max_tries = 3,
.timeout = 60
)Arguments
- .llms
A list of
LLMMessageobjects that were part of the batch. The list should have names (custom IDs) set bysend_claude_batch()to ensure correct alignment.- .batch_id
Character; the unique identifier for the batch. By default this is NULL and the function will attempt to use the
batch_idattribute from.llms.- .api_url
Character; the base URL for the Claude API (default: "https://api.anthropic.com/").
- .dry_run
Logical; if
TRUE, returns the constructed request without executing it (default:FALSE).- .max_tries
Integer; maximum number of retries if the request fails (default:
3).- .timeout
Integer; request timeout in seconds (default:
60).
