I want to implement a feature where EditorSuggest
produces two outputs after a single input:
- Immediately after input, output
fastSuggestion
. - After a delay, output
GPTSuggestion
.
However, the current issue is that a single input only triggers onTrigger
once, and getSuggestions
is called only once. Therefore, I’m unable to render twice.