inferencer is a lightweight R package for calling hosted
foundation model inference APIs through a simple and mostly consistent
interface. It also ships with a small shell companion for the same
providers when you want terminal usage without writing R code.
It currently supports:
The package is intentionally minimal. It focuses on a few common tasks:
It also includes Gemini TTS support through
query_gemini() plus write_gemini_audio(),
OpenRouter and Gemini embedding helpers, Gemini and OpenRouter
image-generation helpers, and lower-level multimodal wrappers for
non-text inputs. It also includes query_fallback() on the R
side for simple ordered fallback across Gemini, OpenRouter, and
Groq.
More advanced provider-specific parameters may be added gradually in future versions.
Set your API keys first:
Sys.setenv(GEMINI_API_KEY = "your_key_here")
Sys.setenv(OPENAI_API_KEY = "your_key_here")
Sys.setenv(GROQ_API_KEY = "your_key_here")
Sys.setenv(OPENROUTER_API_KEY = "your_key_here")
Sys.setenv(CEREBRAS_API_KEY = "your_key_here")
Sys.setenv(OLLAMA_API_KEY = "your_key_here")Load the package:
library(inferencer)The package includes optional executable zsh helpers in
inst/shell. They are kept inside inferencer
because they mirror the R wrappers closely and stay small enough not to
justify a separate package.
The shell layer currently includes query helpers, model-listing helpers, and a terminal markdown renderer:
query_gemini, query_groq,
query_openrouter, query_ollama,
query_fallbacklist_gemini_models, list_groq_models,
list_openrouter_models,
list_openrouter_free_models,
list_ollama_modelsrender_markdown_terminalRun scripts from the repo:
inst/shell/query_openrouter "Summarize retrieval-augmented generation."Or add the installed shell directory to PATH:
system.file("shell", package = "inferencer")export PATH="$(Rscript -e 'cat(system.file(\"shell\", package = \"inferencer\"))'):$PATH"Shell API keys should live in .zprofile, not
.Renviron, but they use the same names as the R
wrappers:
export GEMINI_API_KEY="your_key_here"
export GROQ_API_KEY="your_key_here"
export OPENROUTER_API_KEY="your_key_here"
export CEREBRAS_API_KEY="your_key_here"
export OLLAMA_API_KEY="your_key_here"Example shell usage:
query_openrouter "Summarize the main uses of retrieval-augmented generation."
query_gemini "Write three title ideas for a data engineering memo." "gemini-2.5-flash"
query_ollama "Explain principal component analysis in one paragraph." "gpt-oss:120b"
query_fallback "Draft a concise status update for today's analysis."
query_openrouter --json "Return a short JSON object."
query_openrouter "Write release notes in markdown." | render_markdown_terminal
list_openrouter_free_models
list_openrouter_models --jsonEach query_* shell helper takes:
By default, query scripts print response text. With
--json, they print the full parsed JSON payload.
query_fallback uses this fixed order with each
function’s default model:
query_geminiquery_openrouterquery_groqIf all three calls fail, it exits with a non-zero status.
openai_models <- list_openai_models()
head(openai_models)gemini_models <- list_gemini_models()
head(gemini_models)Parsed JSON list:
gemini_json <- list_gemini_models(json_list = TRUE)groq_models <- list_groq_models()
head(groq_models)openrouter_models <- list_openrouter_models()
head(openrouter_models)Parsed JSON list:
openrouter_json <- list_openrouter_models(json_list = TRUE)Refresh benchmark results directly from OpenRouter’s benchmarks endpoint:
or_benchmarks <- list_openrouter_benchmarks(
source = "artificial-analysis",
task_type = "coding"
)
head(or_benchmarks)extract_openrouter_benchmarks() remains available to
inspect benchmark fields already present in a saved models response, but
it is not the recommended interface for refreshing benchmark data:
or_benchmarks <- extract_openrouter_benchmarks(openrouter_json)
head(or_benchmarks)Filter model categories from the general catalog:
openrouter_embedding_models <- list_openrouter_embedding_models()
openrouter_image_models <- list_openrouter_image_models()
openrouter_audio_models <- list_openrouter_audio_models()
openrouter_multimodal_models <- list_openrouter_multimodal_models()List video generation models and their supported capabilities:
openrouter_video_models <- list_openrouter_video_models()
head(openrouter_video_models)ollama_models <- list_ollama_models()
head(ollama_models)OpenAI requests use the Responses API:
query_openai("Explain retrieval-augmented generation in plain English.")Use structured Responses API input or inspect the complete response:
response <- query_openai(
input = list(
list(
role = "user",
content = list(list(type = "input_text", text = "Summarize this topic."))
)
),
json_list = TRUE
)query_gemini("Explain what a large language model is in simple terms.")Specify model and generation settings:
query_gemini(
prompt = "Write three short taglines for an AI consulting firm.",
model = "gemini-2.5-flash",
temperature = 0.8,
top_p = 0.95
)Gemini TTS:
audio_b64 <- query_gemini(
prompt = paste(
"TTS the following conversation between Joe and Jane:",
"Joe: Hows it going today Jane?",
"Jane: Not too bad, how about you?"
),
model = "gemini-2.5-flash-preview-tts",
response_modalities = "AUDIO",
speech_config = list(
multiSpeakerVoiceConfig = list(
speakerVoiceConfigs = list(
list(
speaker = "Joe",
voiceConfig = list(
prebuiltVoiceConfig = list(voiceName = "Kore")
)
),
list(
speaker = "Jane",
voiceConfig = list(
prebuiltVoiceConfig = list(voiceName = "Puck")
)
)
)
)
)
)
write_gemini_audio(audio_b64, "out.wav", format = "wav")Gemini embeddings:
embed_gemini(c("machine learning", "data science"))Gemini text-to-image:
img_b64 <- generate_image_gemini("A watercolor skyline at sunrise")Gemini multimodal input:
query_gemini_content(
parts = list(
list(text = "Describe this audio clip."),
list(inlineData = list(mimeType = "audio/mp3", data = "BASE64_AUDIO_HERE"))
)
)query_groq("Summarize the difference between R and Python in 5 bullet points.")Specify model:
query_groq(
prompt = "Give me a concise explanation of vector databases.",
model = "llama-3.3-70b-versatile",
temperature = 0.2,
max_tokens = 300
)Request an SSE response and assemble its text:
query_groq("Explain vector databases briefly.", stream = TRUE)Groq SSE responses are currently buffered and parsed before the function returns. This does not print tokens incrementally to the terminal.
query_openrouter("What are the main use cases of retrieval-augmented generation?")Use a free model:
query_openrouter(
prompt = "Rewrite this in a more professional tone: our app is pretty good at searching files",
model = "stepfun/step-3.5-flash:free",
temperature = 0
)Request token log probabilities and retain the complete response:
response <- query_openrouter(
"Classify this review as positive or negative.",
logprobs = TRUE,
top_logprobs = 5,
json_list = TRUE
)query_fallback("Explain retrieval-augmented generation in plain English.")OpenRouter embeddings:
embed_openrouter(c("alpha", "beta"))OpenRouter text-to-image:
generate_image_openrouter(
"A minimalist product photo of a mechanical keyboard on oak"
)OpenRouter multimodal input:
query_openrouter_content(
content = list(
list(type = "text", text = "What is in this image?"),
list(type = "image_url", image_url = list(url = "https://example.com/cat.png"))
),
model = "meta-llama/llama-3.3-70b-instruct:free"
)query_cerebras("Explain inflation targeting in one paragraph.")Current public model catalog:
cerebras_models <- list_cerebras_models()Use list_cerebras_models() to inspect the current public
model catalog before pinning a model ID, because Cerebras public models
may refresh frequently.
Specify model:
query_cerebras(
prompt = "Write a short introduction to algorithmic trading.",
model = "gemma-4-31b"
)query_ollama("Explain why the sky is blue.")Specify model:
query_ollama(
prompt = "Give me a concise explanation of principal component analysis.",
model = "gpt-oss:120b"
)prompt <- "Explain retrieval-augmented generation in plain English."
list(
gemini = query_gemini(prompt),
groq = query_groq(prompt),
openrouter = query_openrouter(prompt),
cerebras = query_cerebras(prompt),
ollama = query_ollama(prompt)
)The normal test suite mocks HTTP requests and never consumes API quota. Release validation can opt into four live behavior checks for OpenAI Responses, OpenRouter log probabilities, buffered Groq SSE assembly, and Cerebras’ shared OpenAI-compatible transport:
Rscript tools/smoke-test-live-providers.RThe script requires the corresponding provider keys. Override the
default live test models with
INFERENCER_OPENROUTER_LOGPROBS_MODEL and
INFERENCER_GROQ_STREAM_MODEL when provider availability
changes.
cb_json <- list_cerebras_models(json_list = TRUE)
names(cb_json)gm_json <- list_gemini_models(json_list = TRUE)
names(gm_json)gemini-2.5-flash-preview-ttsgemini-2.5-pro-preview-ttsgemini-embedding-001gemini-embedding-2-previewimagen-4.0-generate-001imagen-4.0-ultra-generate-001imagen-4.0-fast-generate-001Note: provider support differs by modality and model family. Model IDs and capabilities should still be checked against the live provider model catalogs.
or_models <- list_openrouter_models()
or_models[, pricing.prompt := sapply(pricing, `[[`, "prompt")]
or_models[pricing.prompt == 0]nvidia/llama-nemotron-embed-vl-1b-v2:free