ExOpenAI.Engines.list_engines

You're seeing just the function list_engines, go back to ExOpenAI.Engines module for more information.
Link to this function

list_engines(opts \\ [])

View Source
This function is deprecated. Deprecated by OpenAI.

Specs

list_engines(openai_organization_key: String.t(), openai_api_key: String.t()) ::
  {:ok, ExOpenAI.Components.ListEnginesResponse.t()} | {:error, any()}

Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability.

Endpoint: https://api.openai.com/v1/engines

Method: GET

Docs: https://platform.openai.com/docs/api-reference/engines


Required Arguments:

Optional Arguments:

  • openai_api_key: OpenAI API key to pass directly. If this is specified, it will override the api_key config value.

  • openai_organization_key: OpenAI API key to pass directly. If this is specified, it will override the organization_key config value.