getRawListFineTunes method

Future<Map<String, dynamic>> getRawListFineTunes()

List your organization's fine-tuning jobs, return a Map

Implementation

Future<Map<String, dynamic>> getRawListFineTunes() async {
  try {
    _checkApi();
    final result = await service.getListFineTunes(apiKey: _apiKey);
    return result.toMap();
  } catch (e) {
    throw _exceptionCheck(e);
  }
}