Skip to content

OpenAI.FineTuneJob.Lookup

Andrew Lambert edited this page Feb 8, 2024 · 2 revisions

Method signatures

 Shared Function Lookup(Index As Integer) As OpenAI.FineTuneJob
 Shared Function Lookup(FineTuneID As String) As OpenAI.FineTuneJob

Parameters

Lookup(String)

Name Type Comment
FineTuneID String The ID of the FineTuneJob to retrieve. If no FineTuneJob matches the ID then the return value is Nil

Lookup(Integer)

Parameters

Name Type Comment
Index Integer The index of the FineTuneJob to retrieve. If the index is invalid then an OutOfBoundsException will be raised.

Return value

Returns a new instance of OpenAI.FineTuneJob representing the fine tuning job.

Remarks

Use this method to retrieve jobs that have already been submitted. You can look jobs up by their ID string, or by their index in conjunction with the Count method to iterate over all previously submitted jobs.

Clone this wiki locally