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 = 0,
int seed = 0,
int topK = 3,
int candidateCount = 1,
int maxOutputTokens = 256,
}) {
throw UnimplementedError('generate() has not been implemented.');
}