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