getModel method

Future<Model> getModel(
  1. GetModelRequest request
)

Gets information about a specific Model such as its version number, token limits, parameters and other metadata. Refer to the Gemini models guide for detailed model information.

Throws a http.ClientException if there were problems communicating with the API service. Throws a StatusException if the API failed with a Status message. Throws a ServiceException for any other failure.

Implementation

Future<Model> getModel(GetModelRequest request) async {
  final url = Uri.https(_host, '/v1beta/${request.name}');
  final response = await _client.get(url);
  return Model.fromJson(response);
}