HyperCrowd
HyperCrowd
Best of luck, mad lads. 👍
I get the same issue, even when trying to pull in from a local checkout of onnx: ```ts import { env, AutoModelForCausalLM, AutoTokenizer } from '@xenova/transformers' env.backends.onnx.wasm.wasmPaths = '/onnxruntime-web/' env.allowRemoteModels...
You can do this: ```js const bypassPressure = { config: { pressureHandler: () => {} } } fastify.post('/', bypassPressure, async (request, reply) => { // ... }) ```