Skip to content

Commit

Permalink
chore: fix typo in RnExecutorchModule.kt (#29)
Browse files Browse the repository at this point in the history
reponse -> response
  • Loading branch information
eltociear authored Nov 18, 2024
1 parent 6ad9f6b commit 653ca0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class RnExecutorchModule(reactContext: ReactApplicationContext) :
this.onResult(END_OF_TEXT_TOKEN);
}

// 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.
// Each token is appended to the tempLlamaResponse StringBuilder in onResult callback.
this.conversationManager.addResponse(this.tempLlamaResponse.toString(), ChatRole.ASSISTANT)
this.tempLlamaResponse.clear()
Expand Down

0 comments on commit 653ca0b

Please sign in to comment.