OpenAI-API-dotnet icon indicating copy to clipboard operation
OpenAI-API-dotnet copied to clipboard

Fine Tuning

Open Daimerias opened this issue 4 years ago • 5 comments

Is it fine tuning coming avaivable anytime soon in this kit ?

Daimerias avatar Nov 26 '21 09:11 Daimerias

working on this next. sorry for the delay.

gotmike avatar Feb 01 '23 16:02 gotmike

Where should we specify the model we want?

// uploading
async Task<File> UploadFileAsync(string filePath, string purpose = "fine-tune");

// for example
var response = await api.Files.UploadFileAsync("fine-tuning-data.jsonl");
Console.Write(response.Id); //the id of the uploaded file

// listing
async Task<List<File>> GetFilesAsync();

// for example
var response = await api.Files.GetFilesAsync();
foreach (var file in response)
{
	Console.WriteLine(file.Name);
}

fatihyildizhan avatar May 22 '23 06:05 fatihyildizhan

Any update here?

Any way we can use fine-tune with this library? I have created a file, what are the next available steps to use?

Thanks!

/ @gotmike

eschneor avatar Jul 20 '23 22:07 eschneor

Hello Dev Team Open AI released a new fine-tuning API - https://platform.openai.com/docs/guides/fine-tuning https://openai.com/blog/gpt-3-5-turbo-fine-tuning-and-api-updates Could you please add support for that API? Thank you!

minzdrav avatar Oct 04 '23 12:10 minzdrav