Skip to content

Commit

Permalink
parameter name mismatch fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
chschrae committed Sep 18, 2024
1 parent fd086f0 commit deae729
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public async Task CreateAndDeleteFineTuning()
TrainingFile = uploadedFile.Id
}.ToBinaryContent();

CreateJobOperation operation = await client.CreateJobAsync(requestContent, waitForCompletion: false);
CreateJobOperation operation = await client.CreateJobAsync(requestContent, waitUntilCompleted: false);
FineTuningJob job = ValidateAndParse<FineTuningJob>(ClientResult.FromResponse(operation.GetRawResponse()));
Assert.That(job.ID, Is.Not.Null.Or.Empty);
Assert.That(job.Error, Is.Null);
Expand Down

0 comments on commit deae729

Please sign in to comment.