How do I deploy transformer model in javascript

Hi everyone!

I am trying to deploy some asr models in javascript. Looking into model export, I found only the tokenizer and the model itself can be exported. For example, if I want to deploy whisper model, I need to write a customized feature extractor in javascript and link it to the tokenizer and model etc. Is that correct?

Thanks!