ExOpenAI.FineTunes.list_fine_tune_events

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

list_fine_tune_events(fine_tune_id, opts \\ [])

View Source

Specs

list_fine_tune_events(String.t(),
  openai_organization_key: String.t(),
  openai_api_key: String.t(),
  stream: boolean(),
  stream_to: pid()
) :: {:ok, ExOpenAI.Components.ListFineTuneEventsResponse.t()} | {:error, any()}

Get fine-grained status updates for a fine-tune job.

Endpoint: https://api.openai.com/v1/fine-tunes/{fine_tune_id}/events

Method: GET

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


Required Arguments:

  • fine_tune_id

Example: ft-AF1WoRqd3aJAHsqc9NY7iL8F

Optional Arguments:

  • stream_to: PID of the process to stream content to

  • stream

  • 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.