Papers for

customer support platform developers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Autonomous research reaches near top results in telecom ticket retrieval

Autonomous Research for Open-Ended Problems: A Case Study on Telecom Ticket Retrieval

Abstract: Recent breakthroughs in LLM-based systems and their abilities in problem solving and coding have allowed progress in the AI for Science paradigm, potentially replacing human roles in machine learning (ML) research. However, while several frameworks of fully autonomous end-to-end ML research have been proposed, successful implementations of them are often limited to problems with narrow search spaces, like language modeling or biomedical ML benchmarks. In this paper, we explore how autonomous research can be adapted to solve open-ended, industry-grade ML problems, by considering a case study: telecom ticket retrieval, an open-ended task with degrees of freedom in representation, architecture, and training data generation. We discover that autonomous research for open-ended problems with commercial and open-source agents shows both promise and limitations: while autonomous research can excel in narrow hyperparameter optimization, it lacks human-like intuition and creativity and requires operational overhead. Even with minimal human supervision, autonomous research can reach $90\%$ of state-of-the-art performance (0.34 vs. 0.38 Recall@1) in a much shorter time period (10 weeks vs. 10 months of human work) at a modest cost (up to \$200 per Cursor campaign). Our empirical evidence recommends that human researchers and autonomous research frameworks work together for best results in ML research.

Fri 11 SeptArtificial IntelligenceInformation RetrievalMachine Learning
The gist
Solving real-world, open-ended machine learning problems without human help is very challenging. The authors studied how autonomous AI systems perform in telecom ticket retrieval, which involves finding relevant records from customer support tickets. They found these systems do well at tuning specific settings but still lack human creativity and intuition. With some human guidance, the AI got most of the way to the best results much faster and at low cost. The study suggests combining human and AI efforts works best for complex research tasks.
Open 2609.13073v1

Agentic AI staleness driven by refresh schedule not cache age

ChurnBench: A Drift-Aware Benchmark Demonstrating That Refresh Scheduling, Not Cache Age, Governs Staleness in Agentic AI

Abstract: In production, agentic systems answer questions over data that lives in several places and keeps changing: licenses are reassigned, users offboarded, prices changed, contracts renewed. Existing retrieval benchmarks freeze the data, so they cannot ask whether an agent's answer is still true, only whether it found the right passage. We present ChurnBench, an open-source benchmark that generates a four-source enterprise data fabric as a timeline rather than a snapshot. Every change is written to an append-only ground-truth ledger, and gold answers are computed from that ledger, never from the live stores. An answer that was correct when its data was retrieved but wrong when evaluated is therefore detected and labeled a freshness error, distinct from a reasoning error; we validate this by resolving ground truth at both timestamps for every case reported. Using the instrument, we find that when a system refreshes on a schedule, cache age does not predict staleness. Across cache ages of 1, 14, and 28 days, freshness errors were 7, 4, and 4, because scheduled refresh bounds staleness by time-to-live, and no TTL lapse was observed in any window. A controlled ablation confirms the mechanism: disabling tiered refresh raises freshness errors from 4 to 45 at 28 days and leaves them identical at one day. The variable a drift benchmark should sweep is therefore TTL configuration against each entity's rate of change, not drift-window length. ChurnBench, the evaluation harness, and all per-error data are released open source.

Thu 10 SeptSoftware Engineering
The gist
Many AI systems answer questions using data that changes often, like prices or user info. The authors created ChurnBench, a new tool that tracks changes over time so it can tell if an AI's answer was once correct but became outdated. They found that how often the data is refreshed, not how old the stored data is, controls whether answers become stale. This helps developers focus on refresh timing to keep AI answers accurate.
Open 2609.11515v1

Platform enables live experiments on human and AI team collaboration

Pairit: A Platform for Live Experiments on Human-AI Collaboration

Abstract: Organizational design in the era of artificial intelligence requires experimental methods that can test how human-AI groups coordinate, delegate, and make decisions. Programmable platforms coordinate live human-to-human sessions or real-time human-AI chat, but researchers cannot easily declare experiment protocols in which AI participants both communicate and act on shared work within one auditable configuration. Here we introduce Pairit, an online platform that facilitates the design, testing, and deployment of experiments that test human-AI organizational designs and interventions. Through a single YAML configuration file, researchers declare an executable experiment graph (pages, routing, randomization, matchmaking, chat, shared workspaces, server-hosted agents, surveys, timers, and custom HTML components) and combine any number of humans and AI agents in live sessions. We have validated the feasibility of the platform through multiple live deployments, including peer-reviewed published studies, capturing high-resolution process traces of communication, negotiation, and collaborative work in live human-AI dyads. By representing complex interactive protocols as standardized, auditable configuration files, Pairit provides reusable infrastructure for specifying, deploying, and sharing live human-AI organizational experiments.

Wed 9 SeptHuman-Computer InteractionArtificial Intelligence
The gist
Organizing teamwork with AI is tricky because it's hard to test how people and AI can best work together and share tasks. The authors created Pairit, an online tool that lets researchers set up real-time experiments where humans and AI chat, share work, and make decisions in a controlled way. It uses a simple configuration file to design and run these experiments, tracking detailed interactions. The platform has been tested in actual studies and helps share and repeat these experiments easily.
Open 2609.09789v1