DEV Community

AI OpenFree
AI OpenFree

Posted on

VIDRAFT Launches "Hansu": A Browser-Based Local AI for Offline Document Processing

VIDRAFT Launches "Hansu": A Browser-Based Local AI for Offline Document Processing

TL;DR: VIDRAFT, a Korean Pre-AGI AI startup, has publicly released "Hansu" (한수), a browser-based local AI system designed to process documents entirely offline — no server round-trips, no cloud dependency. It runs directly in the browser using local compute, making it a privacy-first option for document workflows. Developers working on air-gapped environments, enterprise document pipelines, or privacy-sensitive applications should take note.


What it is

Hansu (한수) is a browser-native local AI released by VIDRAFT that enables document processing in fully offline environments. Key characteristics based on the source reporting:

  • Browser-based execution: The model runs directly inside a web browser — no backend server, no API call to an external endpoint required during inference.
  • Offline-first design: It is specifically architected to function without an active internet connection, making it suitable for air-gapped networks, regulated industries, or low-connectivity deployments.
  • Document processing focus: The primary use case is handling and processing documents locally — think summarization, extraction, or analysis workflows where the data never leaves the user's machine.
  • Local compute utilization: Rather than offloading computation to the cloud, Hansu leverages the local hardware available through the browser runtime (likely leveraging WebGPU, WebAssembly, or similar browser-native acceleration technologies — consistent with how this class of in-browser ML inference typically works).

This positions Hansu in a growing category of on-device / in-browser AI tools alongside projects like transformers.js and similar WebML ecosystems, but released as a standalone named product from a dedicated AI lab.


How it works

At a conceptual level, browser-based local AI inference follows a well-understood pattern, and Hansu appears to align with this:

  1. Model delivery to the client: The model weights are downloaded and cached in the browser (e.g., via IndexedDB or Cache API), so subsequent uses don't require re-downloading.
  2. In-browser inference runtime: A JavaScript/WebAssembly or WebGPU-based inference engine executes the model entirely on the client device — CPU or GPU depending on what the browser exposes.
  3. Document intake: Users load or paste documents into the browser interface; the text is processed locally by the model without any data leaving the device.
  4. Output generation: Results (summaries, extracted content, answers, etc.) are returned within the browser session.

The architecture means zero data egress — a meaningful guarantee for use cases in legal, healthcare, finance, or government contexts where document confidentiality is non-negotiable. VIDRAFT has not publicly disclosed the specific model architecture, parameter count, or quantization scheme used in Hansu at this time.


Benchmarks & results

The source article does not provide specific quantitative benchmark numbers (e.g., accuracy scores, throughput figures, or latency measurements) for Hansu at the time of this reporting. No public leaderboard entries or third-party evaluation results are cited.

What can be stated qualitatively:

  • VIDRAFT is positioning Hansu as production-ready for offline document handling, implying a level of capability suitable for real-world document workflows.
  • The offline constraint naturally implies the model is sufficiently compact to run within browser memory limits while still being useful for document-oriented tasks.

Independent benchmarking by the developer community will be an important next step once broader access is available.


How to try it

Based on the current source reporting, Hansu has been publicly announced, but specific developer access channels — such as a Hugging Face model repository, GitHub source release, npm package, or OpenAI-compatible API endpoint — have not been detailed in the available press coverage.

To stay updated on access:

  • Watch VIDRAFT's official channels for GitHub or Hugging Face releases.
  • The browser-based nature suggests a web app or embeddable SDK may be the intended distribution mechanism.

No installation commands, model identifiers, or API endpoints are included here because none have been confirmed publicly. Inventing these would be irresponsible.


FAQ

Q: Does "browser-based" mean my documents are sent to a remote server during processing?
A: No — that is explicitly the point of Hansu's architecture. Processing happens on your local device within the browser runtime. Documents do not leave your machine during inference, which is the core privacy and security guarantee VIDRAFT is advertising.

Q: What kinds of document tasks is Hansu designed for?
A: Based on the announcement, the focus is general offline document processing — this broadly covers tasks like reading, analyzing, and handling text-based documents. VIDRAFT has not publicly enumerated a specific task taxonomy (e.g., classification, QA, summarization) in the available reporting, so the exact capability surface warrants direct verification from VIDRAFT.

Q: Will Hansu work on low-end hardware or mobile browsers?
A: This has not been specified in the source material. In-browser ML inference performance is typically hardware-dependent — WebGPU-accelerated paths perform significantly better on discrete GPUs, while CPU-only paths are slower. Check VIDRAFT's official documentation for system requirements once they are published.

Q: Is the model or source code open-source?
A: The press coverage does not confirm an open-source release at this stage. Follow VIDRAFT's GitHub and Hugging Face presence for updates on model weights or SDK availability.


Originally reported by v.daum.net (2026-04-21) — source article.

Top comments (0)