Spaces:
Running
Running
File size: 380 Bytes
814c07e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Needle browser app
## Dev
```bash
cd web
npm install
npm run dev # http://localhost:5173
```
During development, ONNX weights are loaded from `web/public/models-dev/` (produced by the `export/` pipeline). For production builds, the app fetches from HF Hub directly — see `src/config.ts`.
## Test
```bash
npm test # runs vitest (tokenizer parity)
```
|