Generate a summary from a data frame of prompts
Arguments
- preprints
Output from
get_preprints()
followed byadd_prompt()
.- model
A model available to Ollama (run
ollamar::list_models()
) to see what's available.- host
The base URL to use. Default is
NULL
, which uses Ollama's default base URL.
Examples
if (FALSE) { # \dontrun{
# Individual papers
preprints <-
get_preprints(c("genomics", "bioinformatics")) |>
add_prompt() |>
add_summary()
preprints
} # }