getListFineTunes method
List your organization's fine-tuning jobs, return a ListFineTunesResponse object
Implementation
Future<ListFineTunesResponse> getListFineTunes() async {
try {
_checkApi();
final result = await service.getListFineTunes(apiKey: _apiKey);
return result;
} catch (e) {
throw _exceptionCheck(e);
}
}