R/process_grok.R

Defines functions process_grok

Documented in process_grok

#' Process request using Grok models
#'
#' @keywords internal
process_grok <- function(prompt, model, api_key, base_url = NULL) {
  processor <- GrokProcessor$new(base_url = base_url)
  return(processor$process_request(prompt, model, api_key))
}

Try the mLLMCelltype package in your browser

Any scripts or data that you put into this service are public.

mLLMCelltype documentation built on May 11, 2026, 9:06 a.m.