batchEmbedText method

  1. @override
Future<BatchEmbedTextResponse> batchEmbedText(
  1. BatchEmbedTextRequest request
)
override

Generates multiple embeddings from the model given input text in a synchronous call.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<BatchEmbedTextResponse> batchEmbedText(
  BatchEmbedTextRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_batchEmbedText case final batchEmbedText?) {
    return batchEmbedText(request);
  }
  throw UnsupportedError('batchEmbedText');
}