Retrieves a model instance, providing basic information about the model such as the owner and permissioning. See this page for details.
retrieve_model(
model,
openai_api_key = Sys.getenv("OPENAI_API_KEY"),
openai_organization = NULL
)required; a length one character vector.
required; defaults to Sys.getenv("OPENAI_API_KEY")
(i.e., the value is retrieved from the .Renviron file); a length one
character vector. Specifies OpenAI API key.
optional; defaults to NULL; a length one
character vector. Specifies OpenAI organization.
Returns a list, elements of which contain information about the model.
For arguments description please refer to the official documentation.
Other model functions:
list_models()
if (FALSE) { # \dontrun{
retrieve_model("text-davinci-002")
} # }