Extract texts or structured data from a batch result
texts.Rd
Extract texts or structured data from a batch result
Value
A character vector or list of text responses. If a type specification was provided to the batch, structured data objects will be returned instead.
Examples
if (FALSE) { # ellmer::has_credentials("openai")
# Create a chat processor
chat <- chat_sequential(chat_openai())
# Process a batch of prompts
batch <- chat$batch(list(
"What is R?",
"Explain base R versus tidyverse",
"Explain vectors, lists, and data frames"
))
# Extract text responses
batch$texts()
}