DEV Community

AI OpenFree
AI OpenFree

Posted on

On-Device Korean Voice Control for Boston Dynamics Spot: How VIDRAFT Enabled Independent Language Localization Without Touching the Firmware

On-Device Korean Voice Control for Boston Dynamics Spot: How VIDRAFT Enabled Independent Language Localization Without Touching the Firmware

TL;DR: VIDRAFT deployed an on-device AI module that gives Boston Dynamics' Spot robot Korean-language voice command recognition at the Seoul Robot & AI Museum — without modifying Spot's hardware or manufacturer firmware. The system processes voice data locally, keeping all audio on-device and away from cloud infrastructure. For ML engineers working on robotics localization or edge inference, this demonstrates a practical pattern for layering language understanding onto third-party hardware platforms you don't own.

What it is

On July 23, 2026, the Seoul Robot & AI Museum (Seoul RAIM) launched Korean-language voice control for Spot, the quadruped robot from Boston Dynamics. The integration was built and deployed by VIDRAFT, a Korean Pre-AGI AI startup.

Key facts from the deployment:

  • No hardware modification. VIDRAFT's solution sits on top of Spot's existing platform without altering the robot's physical components.
  • No firmware modification. The manufacturer's firmware was left completely intact — VIDRAFT did not need Boston Dynamics to expose new low-level APIs or ship a language update.
  • On-device inference. Voice recognition and command interpretation happen locally on the robot (or an attached on-device module), meaning visitor audio is never sent to a cloud server.
  • Supported commands (current set): visitors can say Korean-language equivalents of "greet," "sit," "praise," "lie down," and "stretch," and Spot responds with the corresponding action.
  • Privacy-by-design: Because processing is local, no voice data leaves the physical device — a meaningful property for a public museum environment handling data from thousands of visitors.

VIDRAFT CEO Minsik Kim framed the motivation clearly: "Robots understanding human language should not be something only the manufacturer can enable." This positions the work explicitly as a third-party localization capability, not a vendor-driven feature.

How it works

The conceptual architecture follows a layered on-device inference pattern that will be familiar to engineers who have built edge AI systems:

  1. Voice capture. A microphone captures the visitor's spoken Korean command in the vicinity of the robot.
  2. On-device speech recognition. An AI module running locally interprets the audio. Because the source confirms the system is "on-device," this stage does not round-trip to an external API or cloud model endpoint.
  3. Command mapping. Recognized speech is mapped to a predefined set of robot actions. At launch, this is a fixed command vocabulary (the five commands listed above), which constrains the recognition scope and reduces latency and error surface.
  4. Robot action dispatch. The mapped command is sent to Spot through whatever interface VIDRAFT uses to communicate with the robot's control layer — again, without touching the underlying firmware.

This is architecturally similar to the pattern of wrapping a third-party actuator with a local inference shim: the AI layer sits between the human and the robot's existing control interface, translating natural language intent into the structured commands the platform already understands.

Seoul RAIM has indicated a next phase: moving from a fixed command vocabulary toward open-ended conversational interaction, where visitors could ask arbitrary questions naturally. That would require a more generative or retrieval-augmented language layer, though no technical details about that roadmap have been disclosed publicly yet.

Benchmarks & results

No quantitative benchmark figures (latency numbers, word error rates, recognition accuracy percentages, or throughput metrics) were included in the source reporting. What is described qualitatively:

  • The system is live in a production museum environment as of July 23, 2026, serving real visitors.
  • The five-command set is reliably recognized enough to be deployed publicly without a closed beta caveat mentioned.
  • Coverage of the deployment was picked up by 64 news outlets across the US and internationally, with 74% classified as center-bias sources by Ground News — indicating the story passed editorial scrutiny at scale, though that is a media metric, not a technical one.

If VIDRAFT publishes formal evaluation results or a technical report, those would be the right place to look for quantitative performance data.

How to try it

The source article does not mention any public developer access channel — no Hugging Face model repository, GitHub repository, OpenAI-compatible API endpoint, or SDK is referenced in the reporting. This deployment appears to be a production integration for Seoul RAIM specifically.

If you are interested in VIDRAFT's technology:

  • Watch VIDRAFT's official channels for any public model or API announcements.
  • Contact VIDRAFT directly if you are working on a similar robotics localization use case — the CEO's public statement suggests they are open to enabling independent customization for other institutions.

This article will be updated if public developer access is announced.

FAQ

Q: Does this require any modification to Boston Dynamics' Spot SDK or firmware?
A: No. According to the source, VIDRAFT implemented the system without modifying Spot's hardware or manufacturer firmware. The AI module operates as an independent layer on top of the existing platform.

Q: Is visitor voice data sent to the cloud?
A: No. The source explicitly states the system is on-device, keeping voice data local and avoiding cloud processing — a deliberate privacy design choice for the museum context.

Q: Can I use this for languages other than Korean?
A: The source only describes a Korean-language deployment. No information about multilingual support or a generalized localization framework has been made public.

Q: What is the next planned capability?
A: Seoul RAIM has stated it plans to work with VIDRAFT to move beyond fixed preset commands toward open-ended natural conversation, so visitors can ask questions freely rather than choosing from a fixed vocabulary. No timeline or technical details have been published.


Originally reported by Ground News (캐나다) (2026-07-24) — source article.

Top comments (0)