Map
map.RdMap
Arguments
- x
A character vector or list to map over.
- f
An
LLMorAgentobject.- ...
Additional arguments passed to
generate().
Details
Use responses to retrieve just the content from the assistant messages, or reasoning to retrieve the reasoning traces (if enabled).
Examples
# Requires running Ollama server and gemma4:e4b model
if (FALSE) { # \dontrun{
llm <- create_Ollama(
"gemma4:e4b",
system_prompt = "Convert color to hex code using the format #FFFFFF"
)
x <- c("ocean teal", "california poppy orange", "bougainvillea pink")
hex <- map(x, llm)
hex
} # }