generateText method
Generate text with specific constraints (max tokens, temperature, etc.)
Implementation
Future<String?> generateText(
String prompt, {
String? sessionId,
int? maxTokens,
double? temperature,
double? topP,
}) {
throw UnimplementedError('generateText() has not been implemented.');
}