Skip to contents

This function creates a new llm_provider that interacts with the Open AI API

Usage

create_openai_llm_provider(
  parameters = list(model = "gpt-4o-mini", api_key = Sys.getenv("OPENAI_API_KEY"))
)

Arguments

parameters

A named list of parameters. Currently the following parameters are required:

  • model: The name of the model to use (e.g., "gpt-4o-mini")

  • api_key: The API key to use for authentication with the OpenAI API. This should be a project API key (not a user API key) and it should have sufficient permissions. It is recommended to safely store the API key in an environment variable.

Value

A new llm_provider object for use of the OpenAI API