跳到正文
Jones Ray

ScholarPulse 日报 2026-08-01

2026-08-01 学术简报:2 篇。UNICON作为数值智能基础模型,实现了跨学科通用性,无需重新训练即可在未见领域达到专家水平。

今日速览

序号标题来源日期主题推荐等级
1A foundation model of numerical intelligence with cross-disciplinary generalizationarXiv2026-07-30AI-Agent高
2AgentRadio: Passive Awareness for Long-Horizon Multi-Agent CollaborationarXiv2026-07-30AI-Agent高

重点论文与技术动态

1. A foundation model of numerical intelligence with cross-disciplinary generalization

一句话结论

UNICON作为数值智能基础模型,实现了跨学科通用性,无需重新训练即可在未见领域达到专家水平。

一段话。
UNICON通过图示例上下文推断系统间共享预测关系并应用于查询,在科学和社会系统中表现优异,包括未训练学科;结合语言模型代理可超越未见学科的最先进专家,且训练语料多样性提升泛化能力。

核心内容

方法与数据

价值判断

摘要 Intelligence is commonly understood as the ability to acquire and apply knowledge, adapt to unfamiliar situations and solve new problems. Large language models exhibit this capacity by inferring task-relevant knowledge from textual context and applying it to new tasks. Yet intelligence need not be confined to language. For scientific and social systems, we need models that acquire and apply knowledge from numerical context-an ability we call numerical intelligence. Here we introduce UNified In-Context Operator Networks (UNICON), a foundation model that exhibits numerical intelligence across disciplines. Using graph-based examples from a system as context, UNICON infers the predictive relation shared across them and applies it to queries from the same system. Across scientific and social systems, including those from disciplines absent from training, the same model approaches specialist performance without retraining. Combining UNICON with language-model agents yields further gains, enabling it to surpass state-of-the-art specialists in a discipline unseen in training. We further show that training-corpus diversity improves generalization to unseen disciplines. Together, these results establish UNICON as a foundation model of numerical intelligence and position it as a building block for a broader ecosystem of artificial intelligence.

2. AgentRadio: Passive Awareness for Long-Horizon Multi-Agent Collaboration

一句话结论

AgentRadio通过异步消息传递实现多代理被动感知,显著提升长时程代码理解任务解决率。

一段话。AgentRadio解决了现有系统仅支持阶段边界通信的缺陷,通过异步消息层使代理能被动感知同伴并融入新发现,从而在SWE-Atlas QnA基准上将四代理系统任务解决率从单代理的32.3%提升至62.1%,较Claude Code Opus 4.8的57.2%更高,且收益随任务难度增长。

核心内容

方法与数据

价值判断

摘要 Understanding large codebases is a long-horizon task for Large Language Model (LLM) agents: answering a single question can require building and running the software, tracing execution across files, and synthesizing evidence over tens of minutes. On SWE-Atlas QnA, a benchmark of long-horizon questions over production repositories, a single Claude Code agent (Opus 4.6) resolves only 32.3% of tasks. Dividing the work among agents with clean contexts mitigates this limitation. However, the subtasks of code comprehension are interdependent. One agent's findings can rewrite another's task, so agents must coordinate during execution, not only at phase boundaries. Existing multi-agent systems support such exchange only between phases, through staged handoffs or synchronized rounds. Communication and work remain mutually exclusive. A discovery made mid-execution cannot be shared until the next boundary. We present AgentRadio, an asynchronous message-passing layer that equips coding-agent harnesses with three primitives: threads, messages, and waiting for mentions. The last runs as a background task, surfacing teammates' messages without interrupting foreground work, so each agent remains passively aware of its peers and folds new findings into its ongoing task. Under a five-phase protocol of division of labor and negotiation, four agents organized by AgentRadio resolve 62.1% of tasks, 29.8 points above a single agent and above Claude Code with the newer Opus 4.8 (57.2%). Rubric-level analysis shows the gain growing with task difficulty, consistent with mid-course correction as the underlying mechanism. Our code is available at https://github.com/Coral-Protocol/AgentRadio.