QVAC is Tether’s answer to centralized AI. An entirely new paradigm where intelligence runs privately, locally, and without permission.
No clouds. No gatekeepers. Just you, your machines, and unstoppable intelligence.
With our tools you can power your apps with local AI for multiple use cases from the same interface: cross-platform, P2P native.
import { completion, LLAMA_3_2_1B_INST_Q4_0, loadModel, unloadModel } from "@qvac/sdk"; // Use any Pear or HTTP URL, e.g.: pear://afa79ee07c0a138bb9f11bfaee771fb1bdfca8c82d961cff0474e49827bd1de3/Llama-3.2-1B-Instruct-Q4_0.gguf const modelId = await loadModel({ modelSrc: LLAMA_3_2_1B_INST_Q4_0, modelType: "llm", }); const history = [ { role: "user", content: "QVAC, how may entropy be reversed?", }, ]; const result = completion({ modelId, history, stream: true, }); for await (const token of result.tokenStream) { console.log(token); } await unloadModel({modelId});
Run your code on Linux, macOS, Windows, Android and iOS without changing a single line.
Most AI apps trade your privacy for convenience. QVAC doesn't. Our tools run locally and learn from your device—never the cloud. Whether it's a heartbeat or a conversation, your data stays yours. Always private, always encrypted, always yours.