菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-03-30
📄 Abstract - SAGAI-MID: A Generative AI-Driven Middleware for Dynamic Runtime Interoperability

Modern distributed systems integrate heterogeneous services, REST APIs with different schema versions, GraphQL endpoints, and IoT devices with proprietary payloads that suffer from persistent schema mismatches. Traditional static adapters require manual coding for every schema pair and cannot handle novel combinations at runtime. We present SAGAI-MID, a FastAPI-based middleware that uses large language models (LLMs) to dynamically detect and resolve schema mismatches at runtime. The system employs a five-layer pipeline: hybrid detection (structural diff plus LLM semantic analysis), dual resolution strategies (per-request LLM transformation and LLM-generated reusable adapter code), and a three-tier safeguard stack (validation, ensemble voting, rule-based fallback). We frame the architecture through Bass et al.'s interoperability tactics, transforming them from design-time artifacts into runtime capabilities. We evaluate SAGAI-MID on 10 interoperability scenarios spanning REST version migration, IoT-to-analytics bridging, and GraphQL protocol conversion across six LLMs from two providers. The best-performing configuration achieves 0.90 pass@1 accuracy. The CODEGEN strategy consistently outperforms DIRECT (0.83 vs 0.77 mean pass@1), while cost varies by over 30x across models with no proportional accuracy gain; the most accurate model is also the cheapest. We discuss implications for software architects adopting LLMs as runtime architectural components.

顶级标签: systems llm agents
详细标签: middleware schema interoperability runtime adaptation llm-generated code distributed systems 或 搜索:

SAGAI-MID:一种生成式AI驱动的中间件,用于实现动态运行时互操作性 / SAGAI-MID: A Generative AI-Driven Middleware for Dynamic Runtime Interoperability


1️⃣ 一句话总结

这篇论文提出了一个名为SAGAI-MID的智能中间件,它利用大语言模型在系统运行时自动识别并解决不同服务之间的数据格式不匹配问题,从而让异构系统能够动态、灵活地协同工作,而无需为每种组合预先编写适配代码。

源自 arXiv: 2603.28731