getResponse method
Implementation
@override
Future<String> getResponse() async {
final String fullPrompt = _queryChunks.join("");
final response = (await llmInference.generateResponse(fullPrompt.toJS, null).toDart).toDart;
// Don't add response back to queryChunks - that's handled by InferenceChat
return response;
}