embed static method

Future<List<double>> embed(
  1. String text
)

Convert text to 384-dimensional embedding

Implementation

static Future<List<double>> embed(String text) async {
  return _executor.run(() async => _embedInternal(text));
}