This function creates and submits a batch of messages to the Azure OpenAI Batch API for asynchronous processing.
send_azure_openai_batch(
.llms,
.endpoint_url = Sys.getenv("AZURE_ENDPOINT_URL"),
.deployment = "gpt-4o-mini",
.api_version = "2024-10-01-preview",
.max_completion_tokens = NULL,
.reasoning_effort = NULL,
.frequency_penalty = NULL,
.logit_bias = NULL,
.presence_penalty = NULL,
.seed = NULL,
.stop = NULL,
.temperature = NULL,
.top_p = NULL,
.logprobs = NULL,
.top_logprobs = NULL,
.dry_run = FALSE,
.overwrite = FALSE,
.max_tries = 3,
.timeout = 60,
.verbose = FALSE,
.json_schema = NULL,
.id_prefix = "tidyllm_azure_openai_req_"
)
An updated and named list of .llms
with identifiers that align with batch responses, including a batch_id
attribute.
A list of LLMMessage objects containing conversation histories.
Base URL for the API (default: Sys.getenv("AZURE_ENDPOINT_URL")).
The identifier of the model that is deployed (default: "gpt-4o-mini").
Which version of the API is deployed (default: "2024-10-01-preview")
Integer specifying the maximum tokens per response (default: NULL).
How long should reasoning models reason (can either be "low","medium" or "high")
Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency.
A named list modifying the likelihood of specified tokens appearing in the completion.
Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far.
If specified, the system will make a best effort to sample deterministically.
Up to 4 sequences where the API will stop generating further tokens.
What sampling temperature to use, between 0 and 2. Higher values make the output more random.
An alternative to sampling with temperature, called nucleus sampling.
If TRUE, get the log probabilities of each output token (default: NULL).
If specified, get the top N log probabilities of each output token (0-5, default: NULL).
Logical; if TRUE, returns the prepared request object without executing it (default: FALSE).
Logical; if TRUE, allows overwriting an existing batch ID (default: FALSE).
Maximum number of retries to perform the request (default: 3).
Integer specifying the request timeout in seconds (default: 60).
Logical; if TRUE, additional info about the requests is printed (default: FALSE).
A JSON schema object provided by tidyllm schema or ellmer schemata (default: NULL).
Character string to specify a prefix for generating custom IDs when names in .llms
are missing (default: "tidyllm_azure_openai_req_").