search
HomeTechnology peripheralsAIOpen and closed source model 'Chaos': Let's see which agent can best glimpse human beings' true intentions

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions
The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com

The first authors of this article are Qian Cheng and He Bingxiang, undergraduate students in the Department of Computer Science, Tsinghua University. Both are members of THUNLP. Qian Cheng's main research interests are tool learning and large model-driven agents. He is about to study for a PhD at UIUC. He Bingxiang's main research interests are large model alignment and security, and he will soon study for a PhD at Tsinghua University. The corresponding authors of this article are Cong Xin and Lin Yankai, and the supervisor is Associate Professor Liu Zhiyuan.

Today, with the rapid development of artificial intelligence, we are constantly exploring the intelligence of machines, but we often ignore how these intelligent agents deeply understand us - their creators. Every interaction, every word, every action we humans have in life is filled with intention and emotion. But the real challenge is: how are these implicit intentions captured, parsed, and reacted to by the agent? Traditional intelligent agents respond quickly to explicit commands, but they often fail to understand complex human implicit intentions.

In recent years, language models such as GPT and LLaMA have demonstrated amazing capabilities in solving complex tasks. However, although the agents with them as their core are good at formulating strategies and executing tasks, they rarely take into account robust user interaction strategies. The tasks given by users are usually vague and short, which requires the agent to not only understand our literal requests, but also to see through our implicit intentions.

Therefore, for a new generation of intelligent agents to be implemented and used by the public, it needs to be human-centered, focusing not only on the accuracy of task execution, but also on how to establish a more natural, smooth and rich relationship with humans. Insightful communication style.

In order to make up for this lack, a joint team from Tsinghua University, Renmin University, and Tencent recently proposed a new intelligent agent interaction design plan. This work first introduces Intention-in-Interaction (IN3), a new benchmark that aims to understand users' implicit intentions through explicit interactions with users.

Using Mistral-7B as the framework and based on IN3 training, Mistral-Interact can proactively evaluate the ambiguity of tasks, query user intentions, and refine them into actionable goals before launching downstream agent task execution. After embedding the model into the XAgent framework, the article conducts a comprehensive evaluation of the fully stateful agent system.

The results show that this solution has outstanding performance in identifying ambiguous user tasks, recovering and summarizing key missing information, setting accurate and necessary agent execution goals, and reducing the use of redundant tools. This innovative method not only fills the gap in the interaction between intelligent agents and users, truly putting humans at the center of intelligent agent design, but also means that we are taking a step closer to the goal of designing intelligent agents that are more in line with human intentions.

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions

  • Paper title: Tell Me More! Towards Implicit User Intention Understanding of Language Model Driven Agents
  • Paper link: https://arxiv.org/abs/2402.09205
  • Code repository: https ://github.com/HBX-hbx/Mistral-Interact
  • Open source model: https://huggingface.co/hbx/Mistral-Interact
  • Open source dataset: https://huggingface.co/ datasets/hbx/IN3

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions

                                                                                                                                                                                                                                                       Comparison of fuzzy task and clear task execution                Current agent benchmarks often assume that a given task is clear , and does not consider user intent understanding as an important aspect of evaluation. In view of the incompleteness of evaluation indicators, this work developed the Intention-in-Interaction (IN3) benchmark, which aims to evaluate the interactive capabilities of agents through clear task ambiguity judgment and user intention understanding.
                                                                                                                                                                                                                   IN3 benchmark data construction process

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions As shown in the figure above, the seed task based on human writing is Step 1 , the model iteratively generates new tasks to enhance the dataset while sampling from the dataset as new examples for the next round of generation (Step 2). After this Self-Instruct generation method, the ambiguity, missing details of each task, the importance of each detail, and potential options are manually annotated (Step 3).

Mistral-Interact training process

Since large language models are at the core of agent design, this work first conducted a preliminary study to evaluate the implicit performance of current open source and closed source models in the interaction process. Formula intention understanding ability.
Specifically, the article randomly selects ten tasks from IN3, applies them to test LLaMA-2-7B-Chat, Mistral-7B-Instruct-v0.2 and GPT-4 and indicates these modelsi ) determine the ambiguity of the task, ii) ask the user for missing details when the task is ambiguous, iii) summarize the detailed user task.
                                                                                                                                                                                                          Better, but still lacking understanding of human intent problem. In contrast, GPT-4 is closest to human intention in terms of task ambiguity and important missing details. At the same time, preliminary exploration also shows that in order to further improve the agent's ability to understand implicit intentions in interaction, simple prompt engineering is not enough. It is necessary to further train based on the current open source model to achieve the goal of The degree of application of intelligent agents.

                                                                                                                                                      The construction process of training data (IN3 conversation records)

Referring to the figure above, according to IN3's annotation of task ambiguity, missing details and potential options, the article is used in the process of constructing conversation records several strategies (orange box), which includes: the construction of a clear initial reasoning chain, the construction of a query with suggested options, the construction of different user response tones, and the construction of a clear summary of the reasoning chain. These dialogue construction strategies will better stimulate the query and reasoning capabilities of the target model.

Comprehensive evaluation of agent interaction capabilities

An agent’s implicit intention understanding ability can be evaluated directly through user interaction or indirectly through the agent performing downstream tasks. Among them, user interaction focuses on intention understanding itself, while task execution focuses on the ultimate goal of intention understanding, which is to enhance the agent's ability to handle tasks.

Therefore, in order to comprehensively evaluate the interactive agent design, the article divides the experiment into two parts: i) Instruction Understanding: Evaluating the agent’s intention understanding ability during user interaction; ii) Instruction Execution : Evaluate the task execution performance of the agent after integrating the interaction model.

Instruction understanding does not involve any real-time agent execution, so the article directly evaluates the performance of different language models during the interaction process to determine their interaction capabilities as an upstream module in agent design. The results are as follows Show:

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions

The instructions understand the test results. Among them, the arrow represents the higher the score/ lower the capability. It performs best on indicators such as judging task ambiguity and coverage of missing details, and can make clear and comprehensive summaries based on detailed user intentions. Compared with other open source models, Mistral-Interact can provide more reasonable options for asking for missing details in fuzzy tasks, the query method is more friendly, and its performance is comparable to GPT-4.

In terms of instruction execution, in order to evaluate the effectiveness of implicit intention understanding for agent task execution, the article integrates Mistral-Interact as an upstream interaction module into the XAgent framework for testing. Among them, XAgent can interact in environments such as network search, code execution, command line and file system.

                                                                                                                                                                                       Instruction execution test results (ST stands for subtask, MS stands for milestone)

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions

Quantitative evaluation results show that integrating Mistral-Interact helps: i) avoid setting unnecessary goals during the execution process, ii) make the execution process of the agent more consistent with detailed user intentions, and iii) reduce unnecessary tool calls and promote the efficiency of agent tool usage.

Agent Interaction Case Analysis

In terms of command understanding, in order to further demonstrate the robustness of Mistral-Interact in different dialogue scenarios, the article also provides three case analyses.
                                                                                                       Case studies of Mistral-Interact and users in different scenarios

Case A shows the impact of different user tones and conversation styles on Mistral-Interact. The article found that regardless of whether the user's answer was short or detailed, enthusiastic or cold, or even contained spelling errors, Mistral-Interact was able to accurately understand and provide an appropriate response, proving its robustness.

In case B, it was tested whether Mistral-Interact can continue to ask questions and guide the conversation back on track when the user shows an uncooperative attitude. The results showed that even when users avoided questions, they were still able to effectively redirect the conversation.

In case C it can be observed that Mistral-Interact can incorporate additional information provided by the user into the summary, which is not explicitly asked by the interaction model. This shows that when the model's query cannot fully cover missing details or the user has specific requirements, the model is still able to reasonably and comprehensively summarize all user intentions, making it more user-friendly.

In order to more clearly illustrate the role of Mistral-Interact in terms of instruction execution, a comparative case study is provided in the figure below.

Open and closed source model Chaos: Lets see which agent can best glimpse human beings true intentions

                                                                                                                                                    The text in light red can be found when the user’s target is blurred. XAgent cannot accurately set subtasks that accurately reflect user needs. According to the text marked purple
, it can be found that XAgent often sets some unnecessary subtasks. These are because the user's task is too vague to perform, and the agent tends to fabricate unnecessary details, which is inconsistent with the user's true intention.

In contrast, clear task goals enable XAgent to formulate more specific subtasks after active interaction with Mistral-Interact. The text marked green in the figure demonstrates this consistency. At the same time, the agent execution process becomes simpler and the number of tool calls is reduced. All of these reflect a more efficient agent execution process.

Conclusion

We are standing at a new starting point, ready to witness a new chapter of human-machine collaboration, mutual understanding and learning. Intelligent agents will soon no longer be cold information processors, but empathetic partners, capable of deeply understanding our needs and desires that may not be initially clearly expressed through delicate interactive experiences. This revolution in human-centered intelligent agent design will reveal infinite possibilities in interaction, making intelligent agents truly an indispensable help in our lives.

The above is the detailed content of Open and closed source model 'Chaos': Let's see which agent can best glimpse human beings' true intentions. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Hidden Dangers Of AI Internal Deployment: Governance Gaps And Catastrophic RisksThe Hidden Dangers Of AI Internal Deployment: Governance Gaps And Catastrophic RisksApr 28, 2025 am 11:12 AM

The unchecked internal deployment of advanced AI systems poses significant risks, according to a new report from Apollo Research. This lack of oversight, prevalent among major AI firms, allows for potential catastrophic outcomes, ranging from uncont

Building The AI PolygraphBuilding The AI PolygraphApr 28, 2025 am 11:11 AM

Traditional lie detectors are outdated. Relying on the pointer connected by the wristband, a lie detector that prints out the subject's vital signs and physical reactions is not accurate in identifying lies. This is why lie detection results are not usually adopted by the court, although it has led to many innocent people being jailed. In contrast, artificial intelligence is a powerful data engine, and its working principle is to observe all aspects. This means that scientists can apply artificial intelligence to applications seeking truth through a variety of ways. One approach is to analyze the vital sign responses of the person being interrogated like a lie detector, but with a more detailed and precise comparative analysis. Another approach is to use linguistic markup to analyze what people actually say and use logic and reasoning. As the saying goes, one lie breeds another lie, and eventually

Is AI Cleared For Takeoff In The Aerospace Industry?Is AI Cleared For Takeoff In The Aerospace Industry?Apr 28, 2025 am 11:10 AM

The aerospace industry, a pioneer of innovation, is leveraging AI to tackle its most intricate challenges. Modern aviation's increasing complexity necessitates AI's automation and real-time intelligence capabilities for enhanced safety, reduced oper

Watching Beijing's Spring Robot RaceWatching Beijing's Spring Robot RaceApr 28, 2025 am 11:09 AM

The rapid development of robotics has brought us a fascinating case study. The N2 robot from Noetix weighs over 40 pounds and is 3 feet tall and is said to be able to backflip. Unitree's G1 robot weighs about twice the size of the N2 and is about 4 feet tall. There are also many smaller humanoid robots participating in the competition, and there is even a robot that is driven forward by a fan. Data interpretation The half marathon attracted more than 12,000 spectators, but only 21 humanoid robots participated. Although the government pointed out that the participating robots conducted "intensive training" before the competition, not all robots completed the entire competition. Champion - Tiangong Ult developed by Beijing Humanoid Robot Innovation Center

The Mirror Trap: AI Ethics And The Collapse Of Human ImaginationThe Mirror Trap: AI Ethics And The Collapse Of Human ImaginationApr 28, 2025 am 11:08 AM

Artificial intelligence, in its current form, isn't truly intelligent; it's adept at mimicking and refining existing data. We're not creating artificial intelligence, but rather artificial inference—machines that process information, while humans su

New Google Leak Reveals Handy Google Photos Feature UpdateNew Google Leak Reveals Handy Google Photos Feature UpdateApr 28, 2025 am 11:07 AM

A report found that an updated interface was hidden in the code for Google Photos Android version 7.26, and each time you view a photo, a row of newly detected face thumbnails are displayed at the bottom of the screen. The new facial thumbnails are missing name tags, so I suspect you need to click on them individually to see more information about each detected person. For now, this feature provides no information other than those people that Google Photos has found in your images. This feature is not available yet, so we don't know how Google will use it accurately. Google can use thumbnails to speed up finding more photos of selected people, or may be used for other purposes, such as selecting the individual to edit. Let's wait and see. As for now

Guide to Reinforcement Finetuning - Analytics VidhyaGuide to Reinforcement Finetuning - Analytics VidhyaApr 28, 2025 am 09:30 AM

Reinforcement finetuning has shaken up AI development by teaching models to adjust based on human feedback. It blends supervised learning foundations with reward-based updates to make them safer, more accurate, and genuinely help

Let's Dance: Structured Movement To Fine-Tune Our Human Neural NetsLet's Dance: Structured Movement To Fine-Tune Our Human Neural NetsApr 27, 2025 am 11:09 AM

Scientists have extensively studied human and simpler neural networks (like those in C. elegans) to understand their functionality. However, a crucial question arises: how do we adapt our own neural networks to work effectively alongside novel AI s

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software