retriveFineTune method
Gets info about the fine-tune job. return a FineTunesResponse object
Implementation
Future<FineTunesResponse> retriveFineTune(
{required String fineTuneId}) async {
try {
_checkApi(values: [fineTuneId]);
final result = await service.retriveFineTune(
fineTuneId: fineTuneId, apiKey: _apiKey);
return result;
} catch (e) {
throw _exceptionCheck(e);
}
}