← Back to Mov Home

Under the Hood: Pouli Mou Architecture

Unlike browsers that send page snapshots to external cloud APIs, Mov embeds an IPC-controlled local inference daemon directly within Gecko.

1. Local Process Isolation

Mov's browser chrome manages a companion llama-server process over a secured, ephemeral loopback connection. It automatically spins up when a query is submitted and cleanly evicts from memory after three minutes of inactivity.

2. In-Memory Tab Extraction

When you click Summarize tab or attach + page, Mov reads the parsed document tree of the active tab directly from the rendering process, isolates readable text from ads or tracking scripts, and feeds it into the local model prompt window.

3. Hardware Accelerated Offloading

The engine utilizes Vulkan compute shaders alongside OpenMP multi-threading to offload matrix multiplication directly to your GPU without needing proprietary CUDA runtimes.