Think
AI & Inference
Chat with an LLM, run classical ML inference synchronously, and compute over encrypted data — all as native precompiles a contract can call directly.
LLM Chat
Replies are canned per category (Demo Mode), but which category is picked is a real ONNX intent classifier running locally — not keyword matching.
Classical Inference (ONNX)
Synchronous — executes inline in the same block, no TEE round trip. This demo runs a real, trained softmax-regression sentiment model (141-word vocabulary) as genuine ONNX inference, entirely in your browser via WebAssembly — not a hardcoded wordlist.
FHE Inference
Runs ML inference directly on CKKS-encrypted tensors inside a TEE — the executor never sees the plaintext input or output. Long-running (two-phase): submit encrypted input, get an encrypted result via callback. Useful when even the TEE operator shouldn't see your data. No interactive demo here — it's a specialized primitive most dApps reach for only when handling sensitive numerical data (health, finance) that must stay encrypted end-to-end.