| ▲ | tancop 2 days ago | |
loading third party agents in a sandbox with full custom model support. right now you need to either run that code directly (super dangerous) use a vm/container (slow and complicated) or a interpreter like lua (language bound, slow and weak security). wasm is perfect for this, its almost native speed, built for security and language neutral. onnx and coreml are secure but they can only do the actual model not all the code around it. | ||
| ▲ | agambrahma a day ago | parent [-] | |
Yes, that's the right idea. It's less about browsers, and more about server/edge/local-agent runtimes. Wasm lets you have - sandboxing (untrusted actor code) - clean snapshot/restore - portability of actor across machines If you don’t need those properties, then yes ... native is obviously the better choice | ||