<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>robot safety &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/robot-safety/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Sep 2026 15:14:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>robot safety &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Voice-Controlled AI Agent Lets Quadruped Robot Understand English and Slovak Commands</title>
		<link>https://scienmag.com/voice-controlled-ai-agent-lets-quadruped-robot-understand-english-and-slovak-commands/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Tue, 22 Sep 2026 15:14:45 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advanced robotics research Slovakia]]></category>
		<category><![CDATA[AI-driven quadruped automation]]></category>
		<category><![CDATA[AI-powered robotic understanding]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[GPT-4o]]></category>
		<category><![CDATA[human-robot interaction]]></category>
		<category><![CDATA[intelligent robotic systems]]></category>
		<category><![CDATA[LangGraph]]></category>
		<category><![CDATA[large language models]]></category>
		<category><![CDATA[multi-modal sensor integration in robots]]></category>
		<category><![CDATA[multilingual command recognition]]></category>
		<category><![CDATA[natural language interface]]></category>
		<category><![CDATA[quadruped robot with natural language processing]]></category>
		<category><![CDATA[quadruped robotics]]></category>
		<category><![CDATA[ReAct agent]]></category>
		<category><![CDATA[robot safety]]></category>
		<category><![CDATA[robotic locomotion control]]></category>
		<category><![CDATA[robotic systems with speech response]]></category>
		<category><![CDATA[ROS]]></category>
		<category><![CDATA[Slovak and English language commands]]></category>
		<category><![CDATA[voice control]]></category>
		<category><![CDATA[voice-controlled AI robot]]></category>
		<category><![CDATA[Whisper]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=206235</guid>

					<description><![CDATA[Researchers in Slovakia have built SMaRTAban, a voice-controlled large language model agent that lets a quadruped robot understand spoken English and Slovak commands, interpret its surroundings through vision, and halt safely on operator demand.]]></description>
										<content:encoded><![CDATA[<p>A century ago, the Czech writer Karel Čapek gave the world the word &#8220;robot&#8221; in his play R.U.R., imagining artificial beings that obeyed commands spoken in plain language. Researchers at the Slovak University of Technology in Bratislava, working with the robotics company Panza Robotics, have now brought that vision a step closer to reality. In a study published in the International Journal of Intelligent Robotics and Applications, they present SMaRTAban — the Smart Multi-legged Robotic Transformer Agent Artaban — a system that lets people control a four-legged robot simply by talking to it, in English or in Slovak, while the machine watches, listens, reasons, and answers back.</p>
<p>The platform at the heart of the work is Artaban, a quadruped robot with twelve degrees of freedom, each leg driven by three Maxon motors. It carries four camera modules, two standard RGB and two depth-sensing RGB-D units, plus a time-of-flight camera in its chest, an inertial measurement unit, motor encoders, temperature sensors, and a built-in speaker. A locomotion controller based on Nonlinear Model Predictive Control translates high-level velocity commands into optimized foot trajectories. Onboard computing comes from an Intel NUC 11 with a Core i7 processor and an NVIDIA RTX 2060 GPU running Ubuntu 20.04 and ROS Noetic.</p>
<p>What makes SMaRTAban distinctive is how it stitches together the pieces of a complete voice-command pipeline. Spoken input passes through voice activity detection adapted from the Google Speech Recognition library, then to OpenAI&#8217;s hosted Whisper service, which automatically detects the language and transcribes the audio. The transcript is handed to a ReAct agent built on the LangGraph framework, where GPT-4o reasons step by step and selects from seven custom tools: moving the robot, stopping it, sitting down, standing up, interpreting camera images through GPT-4o vision, synthesizing speech, and waiting. Everything is displayed in a React-based graphical interface so the operator can see every tool call, every response, and every error in real time.</p>
<p>Safety receives unusually careful treatment for a language-driven system. Because large language models are probabilistic by nature, the researchers deliberately avoid relying on the model alone to keep the robot safe. Each tool has a typed schema whose arguments are validated before execution, and invalid parameters are rejected and returned to the model as errors without any physical action. More importantly, nearly every tool runs inside a subprocess guarded by a custom &#8220;interruptible&#8221; decorator. When the operator presses the interrupt button in the GUI, the main process kills that subprocess and independently issues a zero-velocity command to the robot — no LLM consultation required. Shutting down the application triggers the same stop, and a physical emergency-stop button cuts motor power as a final backstop. The researchers are candid that this layered approach still lacks a controller-level watchdog or velocity timeout, so it reduces risk without providing a formal safety guarantee.</p>
<p>The evaluation is unusually thorough for this field. A pilot voice study collected 120 recordings of four phrases — two short and two long, in both English and Slovak — spoken ten times each by three volunteers. English transcription was highly accurate, with word error rates of just 0.04 to 0.08. Slovak proved much harder at the acoustic level: the short phrase &#8220;Choď dopredu&#8221; (go forward) reached a word error rate of 0.97, occasionally being misidentified as a different Slavic language. Yet here is the striking part — even when the transcription looked mangled, meaning often survived. The short Slovak phrase still scored 0.87 on BERTScore, a semantic similarity measure, and the system correctly interpreted the intended command in 87 percent of recordings. The longer Slovak phrase reached a BERTScore of 0.96 and 90 percent understanding despite a word error rate of 0.25.</p>
<p>The core of the paper is a controlled ablation spanning 4,800 accepted tool-calling trials: two models, GPT-4o and GPT-4o-mini, across six agent and prompting configurations, two languages, ten command scenarios, and twenty repetitions each. The scenarios covered translation and turning movements, posture changes, a vision query, and one demanding multi-step command requiring the robot to sit, wait, stand, move forward, turn right, stop, and then describe what it sees. The results tell a clear story about what actually makes language-driven robots reliable.</p>
<p>Simply giving the model access to tools was not enough. Without a task-specific system prompt, GPT-4o completed the full expected action sequence in only 29.75 percent of trials. Adding an explicit system prompt describing the action contract — move, then wait, then stop — lifted that to 52.50 percent. But the decisive jump came from few-shot prompting: three worked examples demonstrating the movement pattern. With iterative ReAct execution, the system prompt, and those demonstrations combined, GPT-4o achieved a tool-call F1 of 0.9977 and 96.5 percent exact-sequence success. GPT-4o-mini followed the same trend, reaching 82 percent exact-sequence success at roughly one-twentieth of the model cost, though it failed to produce a single exact sequence for the complex multi-step command.</p>
<p>That gap between individual correctness and complete sequences is one of the paper&#8217;s most important lessons. On the complex scenario, GPT-4o-mini earned a respectable F1 of 0.8764 because most of its individual tool calls were right — but the ordering was wrong, typically invoking the camera before the required final stop. GPT-4o completed 26 of 40 complex sequences, including all 20 Slovak repetitions. The authors argue, convincingly, that robotics evaluations of language models must report task-level sequence success, not just per-call accuracy, because a command with a missing or misplaced stop action can be physically dangerous even when it scores well on superficial metrics.</p>
<p>Latency measurements complete the practical picture. On the deployed robot&#8217;s own computer, the first tool callback arrived a median of 2.74 seconds after the nominal end of a recorded utterance, rising to 4.10 seconds at the 95th percentile. By contrast, the local ROS stop-service round trip took a median of just 4.28 milliseconds. In other words, cloud transcription and model inference dominate the response path, while local robot communication is nearly instantaneous. This supports a sensible division of labor: the LLM handles interactive, high-level interpretation, while time-critical stabilization and locomotion stay with deterministic local controllers. The study also verified conversation history retention, hazard detection — the system correctly flagged a carpet cutter with an exposed blade as dangerous — graceful error recovery, and reliable mid-execution interruption.</p>
<p>The authors are careful about the limits of their claims. The functional study used scripted commands in dry-run mode, so physical motion quality was not quantified; the voice study involved only three speakers and four phrases; Slovak difficulty at the transcription stage remains an upstream failure mode when meaning is genuinely lost; and dependence on remote APIs introduces network latency and availability concerns. Still, SMaRTAban stands out as the first system in its field to report an evaluated combination of bilingual voice control in English and Slovak, on-demand GPT-4o vision, operator-controlled interruption of running actions, and rigorous quantitative analysis of the whole command path. Future work points toward native multimodal audio input, locally hosted open-source models to remove cloud dependency, the Model Context Protocol for portable tool definitions, integration with SLAM for autonomous navigation, and formal human-robot interaction studies with non-expert users. For now, the image of a quadruped robot that understands &#8220;Choď dopredu&#8221; as readily as &#8220;Go forward&#8221; — and stops the instant you tell it to — marks a meaningful step from Čapek&#8217;s century-old fiction toward an everyday robotic companion.</p>
<p><strong>Subject of Research:</strong> A voice-controlled large language model agent enabling bilingual natural-language control of a quadruped mobile robot with integrated vision and safety mechanisms.</p>
<p><strong>Article Title:</strong> SMaRTAban: a voice-controlled LLM agent for quadruped mobile robotics with integrated vision</p>
<p><strong>Article References:</strong> Zelenay, E., Kocúr, M., Lukáč, M., Duchoň, F., &amp; Marko, R. (2026). SMaRTAban: a voice-controlled LLM agent for quadruped mobile robotics with integrated vision. <em>International Journal of Intelligent Robotics and Applications</em>. <a href="https://doi.org/10.1007/s41315-026-00593-0" rel="noopener noreferrer">https://doi.org/10.1007/s41315-026-00593-0</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s41315-026-00593-0" rel="noopener noreferrer">10.1007/s41315-026-00593-0</a></p>
<p><strong>Keywords:</strong> large language models, quadruped robotics, voice control, Whisper, GPT-4o, ReAct agent, human-robot interaction, natural language interface, LangGraph, robot safety, computer vision, ROS</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">206235</post-id>	</item>
	</channel>
</rss>
