inst/tinytest/test_config.R

# Test configuration functions

# --- Setup: save and restore options ---
old_opts <- options(llm.api.api_base = NULL, llm.api.api_key = NULL)
old_env <- Sys.getenv(c("OPENAI_API_KEY", "ANTHROPIC_API_KEY", "MOONSHOT_API_KEY"),
                      unset = "")
on.exit(options(old_opts), add = TRUE)
on.exit(do.call(Sys.setenv, as.list(old_env)), add = TRUE)

# --- llm_base() ---

# Returns previous value invisibly
expect_null(llm_base("http://localhost:11434"))

# Sets the option
expect_equal(getOption("llm.api.api_base"), "http://localhost:11434")

# Returns previous value when called again
expect_equal(llm_base("https://api.openai.com"), "http://localhost:11434")
expect_equal(getOption("llm.api.api_base"), "https://api.openai.com")

# --- llm_key() ---

# Reset first
options(llm.api.api_key = NULL)

# Returns previous value (NULL initially)
expect_null(llm_key("sk-test-key"))

# Sets the option
expect_equal(getOption("llm.api.api_key"), "sk-test-key")

# Returns previous value when called again
expect_equal(llm_key("sk-new-key"), "sk-test-key")

# --- .get_key() ---

options(llm.api.api_key = NULL)
Sys.setenv(MOONSHOT_API_KEY = "moonshot-test-key")
expect_equal(llm.api:::.get_key("moonshot"), "moonshot-test-key")

Try the llm.api package in your browser

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

llm.api documentation built on April 16, 2026, 5:08 p.m.