generate method
Generates a list of strings based on a prompt using the on-device model.
Implementation
Future<List<String>> generate({
required String prompt,
double? temperature,
int? seed,
int? topK,
int? candidateCount,
int? maxOutputTokens,
}) {
throw UnimplementedError('generate() has not been implemented.');
}