๐ MAROKO133 Update ai: Trump Has Call With Moon Astronauts So Awkward That They Ma
On Monday, four astronauts on the Artemis II mission slipped behind the Moon โ and, in doing so, traveled farther from Earth than any prior human being in history.
They also, unfortunately, experienced one of the most skin-crawlingly awkward interactions in the entire solar system.
During their trip behind the Moon, which brought them 248,655 miles from Earth, the Integrity spacecraft lost contact with ground control in an expected communication blackout that lasted roughly 40 minutes. When they reemerged, the crew โ NASA astronauts Reid Wiseman, Victor Glover and Christina Koch, and Canadian astronaut Jeremy Hansen โ reestablished contact to celebrate.
Those festivities took an awkward turn, though, when president Trump hopped on the call.
“You’ve made history and made all America really proud,” Trump began.
It was a fine start. But after he lavished praise on Hansen, perhaps to help smooth over strained Canadian-US relations, the astronauts seemed to have nothing to say in response.
“I spoke to your prime minister and many other friends I have in Canada. They are so proud of you,” Trump said.
But Hansen didn’t respond verbally โ and neither did any of his compatriots.
And the silence dragged.
For over a minute, the four crew members kept smiling at the camera, like they were posing for a group photo being taken by someone who accidentally hit record. Hansen gave a thumbs up. Smiles stretched into upturned grimaces. Glover’s gaze fell to the ground, defying microgravity. The microphone, floating in front of them, spun listlessly. Each of the astronauts took turns fiddling with it, still saying nothing.
Trump made no attempt to break the silence. It was finally dispelled when Wiseman exhibited the leadership he was made mission commander for and grabbed the mic.
“Administrator Isaacman, just getting a quick comm check to make sure you guys are still on the line and we didn’t have a handover,” he said, addressing NASA head Jared Isaacman.
Trump’s booming voice confirmed that he’d been on the line all along.
“I am, yes. I am,” he said, with a noticeable echo, followed by a chorus of laughter from the control room.
Trump then blamed the extended silence on a technical glitch.
“Yeah I think we may have gotten cut, it is a long distance, it’s a long ways, the reception’s been great. There’s a little bit of about a nine second delay,” he said, before waxing lyrical about Canadian hockey legend Wayne Gretzky.
More on space: Lone Jar of Nutella Drifts Around Cabin of Moon Spacecraft
The post Trump Has Call With Moon Astronauts So Awkward That They May Turn Around and Disappear Into the Void of Space appeared first on Futurism.
๐ Sumber: futurism.com
๐ MAROKO133 Update ai: Which Agent Causes Task Failures and When?Researchers from
Share My Research is Syncedโs column that welcomes scholars to share their own research breakthroughs with over 1.5M global AI enthusiasts. Beyond technological advances, Share My Research also calls for interesting stories behind the research and exciting research ideas. Contact us: [email protected]
Meet the authors
Institutions: Penn State University, Duke University, Google DeepMind, University of Washington, Meta, Nanyang Technological University, and Oregon State University. The co-first authors are Shaokun Zhang of Penn State University and Ming Yin of Duke University.
In recent years, LLM Multi-Agent systems have garnered widespread attention for their collaborative approach to solving complex problems. However, it’s a common scenario for these systems to fail at a task despite a flurry of activity. This leaves developers with a critical question: which agent, at what point, was responsible for the failure? Sifting through vast interaction logs to pinpoint the root cause feels like finding a needle in a haystackโa time-consuming and labor-intensive effort.
This is a familiar frustration for developers. In increasingly complex Multi-Agent systems, failures are not only common but also incredibly difficult to diagnose due to the autonomous nature of agent collaboration and long information chains. Without a way to quickly identify the source of a failure, system iteration and optimization grind to a halt.
To address this challenge, researchers from Penn State University and Duke University, in collaboration with institutions including Google DeepMind, have introduced the novel research problem of “Automated Failure Attribution.” They have constructed the first benchmark dataset for this task, Who&When, and have developed and evaluated several automated attribution methods. This work not only highlights the complexity of the task but also paves a new path toward enhancing the reliability of LLM Multi-Agent systems.
The paper has been accepted as a Spotlight presentation at the top-tier machine learning conference, ICML 2025, and the code and dataset are now fully open-source.
Paper๏ผhttps://arxiv.org/pdf/2505.00212
Code๏ผhttps://github.com/mingyin1/Agents_Failure_Attribution
Dataset๏ผhttps://huggingface.co/datasets/Kevin355/Who_and_When
Research Background and Challenges
LLM-driven Multi-Agent systems have demonstrated immense potential across many domains. However, these systems are fragile; errors by a single agent, misunderstandings between agents, or mistakes in information transmission can lead to the failure of the entire task.
Currently, when a system fails, developers are often left with manual and inefficient methods for debugging:
Manual Log Archaeology : Developers must manually review lengthy interaction logs to find the source of the problem.
Reliance on Expertise : The debugging process is highly dependent on the developer’s deep understanding of the system and the task at hand.
This “needle in a haystack” approach to debugging is not only inefficient but also severely hinders rapid system iteration and the improvement of system reliability. There is an urgent need for an automated, systematic method to pinpoint the cause of failures, effectively bridging the gap between “evaluation results” and “system improvement.”
Core Contributions
This paper makes several groundbreaking contributions to address the challenges above:
1. Defining a New Problem: The paper is the first to formalize “automated failure attribution” as a specific research task. This task is defined by identifying the failure-responsible agent and the decisive error step that led to the task’s failure.
2. Constructing the First Benchmark Dataset: Who&When : This dataset includes a wide range of failure logs collected from 127 LLM Multi-Agent systems, which were either algorithmically generated or hand-crafted by experts to ensure realism and diversity. Each failure log is accompanied by fine-grained human annotations for:
Who: The agent responsible for the failure.
When: The specific interaction step where the decisive error occurred.
Why: A natural language explanation of the cause of the failure.
3. Exploring Initial “Automated Attribution” Methods : Using the Who&When dataset, the paper designs and assesses three distinct methods for automated failure attribution:
– All-at-Once: This method provides the LLM with the user query and the complete failure log, asking it to identify the responsible agent and the decisive error step in a single pass. While cost-effective, it may struggle to pinpoint precise errors in long contexts.
– Step-by-Step: This approach mimics manual debugging by having the LLM review the interaction log sequentially, making a judgment at each step until the error is found. It is more precise at locating the error step but incurs higher costs and risks accumulating errors.
– Binary Search: A compromise between the first two methods, this strategy repeatedly divides the log in half, using the LLM to determine which segment contains the error. It then recursively searches the identified segment, offering a balance of cost and performance.
Experimental Results and Key Findingsย
Experiments were conducted in two settings: one where the LLM knows the ground truth answer to the problem the Multi-Agent system is trying to solve (With Ground Truth) and one where it does not (Without Ground Truth). The primary model used was GPT-4o, though other models were also tested. The systematic evaluation of these methods on the Who&When dataset yielded several important insights:
– A Long Way to Go: Current methods are far from perfect. Even the best-performing single method achieved an accuracy of only about 53.5% in identifying the responsible agent and a mere 14.2% in pinpointing the exact error step. Some methods performed even worse than random guessing, underscoring the difficulty of the task.
– No “All-in-One” Solution: Different methods excel at different aspects of the problem. The All-at-Once method is better at identifying “Who,” while the Step-by-Step method is more effective at determining “When.” The Binary Search method provides a middle-ground performance.
ย
– Hybrid Approaches Show Promise but at a High Cost: The researchers found that combining different methods, such as using the All-at-Once approach to identify a potential agent and then applying the Step-by-Step method to find the error, can improve overall performance. However, this comes with a significant increase in computational cost.
– State-of-the-Art Models Struggle: Surprisingly, even the most advanced reasoning models, like OpenAI o1 and DeepSeek R1, find this task challenging.- This h…
Konten dipersingkat otomatis.
๐ Sumber: syncedreview.com
๐ค Catatan MAROKO133
Artikel ini adalah rangkuman otomatis dari beberapa sumber terpercaya. Kami pilih topik yang sedang tren agar kamu selalu update tanpa ketinggalan.
โ Update berikutnya dalam 30 menit โ tema random menanti!