今日速览
| 序号 | 标题 | 来源 | 日期 | 主题 | 推荐等级 |
|---|---|---|---|---|---|
| 1 | Avatar: Toward Autonomous End-to-End Orchestration of Scientific Workflows using LLMs | arXiv | 2026-09-09 | AI-Agent | 高 |
| 2 | Glyph: A Multi-Strategy Agentic System for Column Description and Sensitivity-Ontology Tagging of Enterprise Data Catalogs | arXiv | 2026-09-09 | RAG | 高 |
重点论文与技术动态
1. Avatar: Toward Autonomous End-to-End Orchestration of Scientific Workflows using LLMs
- 来源:arXiv
- 日期:2026-09-09
- 作者/机构:Suman Raj, Hai Duc Nguyen, Haochen Pan, Ryan Chard, Kyle Chard, Ian Foster
- 主题标签:
AI-Agent,arXiv - 推荐等级:高
- 分类:cs.DC, cs.MA
一句话结论
Avatar通过LLM实现科学工作流系统自主端到端编排,显著减少计算浪费55%和GPU忙碌时间40%,为工作流管理提供新范式。
核心内容
- Avatar采用actor架构,包含编排器、执行器和溯源监控器,规则模式能重现原生执行,使用单一核心运行所有三个工作负载。
- 决策策略支持规则或LLM可插拔,通过统一适配器验证动作目录,使传统与智能控制在相同核心上运行。
- LLM模式下计算浪费减少55%,GPU忙碌时间减少40%,验证了其在资源优化上的有效性。
方法与数据
- 基于Academy框架实现Avatar。
- 评估三个工作负载,未明确具体数据细节。
价值判断
- 值得关注:LLM在科学工作流中有效减少资源浪费,提升执行效率,为自动化编排提供新思路。
- 可复用点:可插拔决策策略设计(规则或LLM)可迁移至其他工作流管理系统,增强灵活性。
- 局限/待核查:摘要未明确提及局限。
摘要
Scientific workflow management (WMSs) systems automate execution, yet orchestrate using fixed, hand-tuned rules. LLM agents promise more autonomous orchestration, but it remains unclear where to introduce agentic reasoning, how to bound its risk, and when it actually helps. We present Avatar, an actor-based architecture comprising an orchestrator, an executor, and a provenance monitor. Each actor's decision policy is pluggable (rule-based or LLM-backed) via a single adapter-validated action catalog, so conventional and agentic control run on the same core across different WMSs. We present an implementation using the Academy framework and evaluate Avatar across three workloads. We observe that Avatar's rule mode reproduces native execution, with a single unchanged core running all three. Moreover, LLM-backed Avatar reports a reduction of compute wastage by $55\%$ and cuts GPU-busy time by $40\%$. Overall, we envision Avatar as a step toward workflow systems that reason about their own orchestration rather than follow pre-fixed rules.2. Glyph: A Multi-Strategy Agentic System for Column Description and Sensitivity-Ontology Tagging of Enterprise Data Catalogs
- 来源:arXiv
- 日期:2026-09-09
- 作者/机构:Kostia Kudriavtsev, Parvez Rafi, Sha Sundaram
- 主题标签:
RAG,arXiv - 推荐等级:高
- 分类:cs.MA, cs.IR
一句话结论
Glyph是一个生产级多策略代理系统,通过LLM代理协作解决企业数据目录中列描述缺失和敏感性本体标签未分配问题,提升数据治理效率。
核心内容
- 针对数据湖中列描述缺失和治理标签未分配的文档债务,Glyph通过LLM代理协作避免影响数据发现、访问控制和监管合规。
- Descriptor基于源代码生成描述(从企业GitHub检索),Tagger并行运行三种策略:描述标签器、业务规则正则标签器和元数据标签器。
- 使用Reciprocal Rank Fusion (RRF) 融合策略输出,提升多标签标注质量,评估采用recall-weighted F2 objective。
方法与数据
- 方法:Descriptor采用推理-行动工具循环实现主动RAG;Tagger微调MiniLM编码器,使用in-batch对比学习目标,NDCG@10从0.55升至0.92。
- 数据:基于275叶数据分类本体,使用向量数据库和对比学习微调。
价值判断
- 值得关注:解决文档债务,增强数据可发现性、访问控制和合规性。
- 可复用点:code-grounded设计、多策略融合机制、per-tag溯源。
- 局限/待核查:摘要未明确。