We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ad9f6b commit 653ca0bCopy full SHA for 653ca0b
android/src/main/java/com/rnexecutorch/RnExecutorchModule.kt
@@ -152,7 +152,7 @@ class RnExecutorchModule(reactContext: ReactApplicationContext) :
152
this.onResult(END_OF_TEXT_TOKEN);
153
}
154
155
- // We want to add the LLM reponse to the conversation once all the tokens are generated.
+ // We want to add the LLM response to the conversation once all the tokens are generated.
156
// Each token is appended to the tempLlamaResponse StringBuilder in onResult callback.
157
this.conversationManager.addResponse(this.tempLlamaResponse.toString(), ChatRole.ASSISTANT)
158
this.tempLlamaResponse.clear()
0 commit comments