A diverse group of call center agents smiling and standing in line with headsets in an office.
Use Case

How Vodafone Cut Customer Service Costs 70% With Multi-Agent AI

Fastweb and Vodafone built LangGraph-powered agents serving 9.5M customers — 82% autonomous resolution, no headcount increase.

Every time a human agent answers a customer call, it costs a telecom company roughly $6.00. Vodafone now pays $0.50 for the same interaction — and customers get faster answers. That 92% cost reduction didn’t come from offshoring or cutting service quality. It came from deploying a multi-agent AI system that resolves 82% of all customer queries without a single human involved.

Customer service is the most expensive and most visible operational cost in telecom. Long hold times, repetitive transfers, and inconsistent answers erode NPS faster than a network outage. Basic chatbots have been promising a fix since 2016 — handling FAQs while failing spectacularly on anything complex. Vodafone and Fastweb decided to solve the problem structurally, not patch it with a keyword-matching bot.

In 2024–2025, the Italian subsidiaries of Swisscom Group deployed two multi-agent AI systems in production: Super TOBi (customer-facing) and Super Agent (internal call center support). Both are built on LangGraph and LangSmith. Super TOBi today serves 9.5 million customers with a 90% correctness rate and 82% autonomous resolution. Super Agent drives an 86% one-call resolution rate for the human operators it assists. Together, they handle over 1 million conversations per day across 15+ markets — without adding headcount.

Why Telecom Is Leading Every Industry in AI Agent Deployment in 2026

Telecom is not a cautious adopter of new technology — it’s currently the fastest-moving sector in enterprise AI. A 2026 industry survey found that 95% of telecom operators have deployed AI in at least one core function, the highest adoption rate of any vertical — ahead of banking (92%) and healthcare (88%). 71% plan to expand into agentic AI deployments this year alone, and 48% already have agentic AI running in a core business function, compared to a 26% cross-industry average.

The economics are unusually clear: a human agent interaction costs $6.00 on average. An AI interaction costs $0.50. For an operator handling hundreds of millions of customer touchpoints annually, that differential compounds into hundreds of millions in potential savings. The barrier was never cost awareness — it was building AI capable enough to handle billing disputes, roaming configuration, and retention flows autonomously, without destroying customer satisfaction in the process. Super TOBi cracked that problem.

The Architecture: How Super TOBi Actually Works

Super TOBi is not a traditional chatbot. It’s a multi-agent system built on LangGraph — an open-source framework for building stateful, multi-actor AI applications from LangChain — with LangSmith providing full observability, tracing, and continuous evaluation.

The architecture uses the Supervisor pattern: a central Supervisor agent receives every incoming customer query. Its first task is to apply guardrails — filtering invalid, off-topic, or abusive inputs before they reach any specialized agent. Its second task is deterministic routing: classifying the customer’s intent and dispatching the conversation to the correct Use Case subgraph. Specialized subgraphs handle distinct domains independently: cost control (plan changes, usage alerts), active offers (upsell, retention), roaming (activation, troubleshooting), sales (new subscriptions), and billing (invoice questions, disputes).

When the Supervisor detects ambiguity — a query that could belong to two subgraphs — it doesn’t guess. It generates a targeted clarification question, collects the response, and re-routes with the additional context. This deterministic approach was the critical design decision behind the 90% correctness rate. Previous chatbot architectures relied on probabilistic intent matching, which produced confident wrong answers. Super TOBi uses explicit state machines with conditional routing logic, eliminating the primary failure mode of earlier AI assistants.

LangSmith gives the team full visibility into every conversation: every routing decision, every API call to internal systems (billing, CRM, product catalog), and every escalation. The team can identify which subgraph has the highest escalation rate and prioritize engineering work accordingly — a continuous improvement loop that didn’t exist with black-box chatbot vendors.

Super Agent: Making Human Operators 40% Faster

The 18% of queries that Super TOBi can’t resolve autonomously are escalated to a human — but those humans now have Super Agent running alongside them in real time. Super Agent is an internal AI co-pilot for call center operators: it surfaces the full customer interaction history, diagnoses the likely issue, suggests resolution steps, and drafts scripts while the conversation is still active.

The result is an 86% one-call resolution (OCR) rate — meaning operators close the vast majority of complex cases in a single call, without callbacks or case re-opening. The industry benchmark for telecom OCR sits between 60–70%. Reaching 86% at scale across Vodafone Italia and Fastweb’s entire customer base isn’t a marginal improvement; it’s a structural change in how the service operation runs.

The Results: What the Deployment Actually Achieved

MetricVodafone + FastwebTelecom Industry Avg
Autonomous resolution rate (Super TOBi)82%44.8% (all AI chatbots)
Correctness rate (Super TOBi)90%
One-call resolution rate (Super Agent)86%60–70%
Customer Effort Score (CES)5.2 / 7.0
Cost per AI interaction~$0.50$6.00 (human)
Conversations per day (basic TOBi)1M+
Markets deployed15+

Vodafone has committed €140 million in continued AI investment to expand these capabilities across additional markets and use cases — the clearest signal that the ROI of the initial deployment exceeded expectations. Telecom companies that don’t have an equivalent system in place are now operating at a structural cost disadvantage that widens every quarter.

What Every Customer-Facing Business Can Take From This

The Vodafone + Fastweb case is not a story about replacing human agents with robots. It’s a story about routing: sending the right work to the right resource. The 18% of queries that now reach a human operator are genuinely complex, high-stakes interactions — retention decisions, billing disputes, technical escalations. Human time is now spent on work that actually requires human judgment, not on answering “what’s my data balance?”

The same logic applies outside telecom. Banks, insurers, SaaS companies, utilities, and large retailers all face the same 12:1 cost ratio between human and AI interactions. The companies that built this infrastructure in 2024–2025 are compounding the advantage every month. The technology — LangGraph, LangSmith, and the underlying LLMs — is commercially available to any engineering team today. The barrier is architectural knowledge and organizational will, not access to proprietary tools.

More AI Agent Case Studies on Sityos

The Vodafone + Fastweb deployment illustrates what’s possible when multi-agent architecture is designed correctly from the start. If you want to understand how similar agentic systems work in other sectors, here are three related case studies available on Sityos AI:

  • Klarna’s AI Agent: The Work of 853 Employees, $60M Saved — how Klarna deployed a GPT-4-powered customer service agent across 23 million users, cutting average resolution time from 11 minutes to 2 minutes.
  • ServiceNow Autonomous Workforce: 90% of IT Tickets Resolved Without a Human — multi-agent AI applied to internal IT service desks, with Honeywell, DocuSign, and City of Raleigh as documented deployments.
  • Salesforce Agentforce Customer Zero: $1.7M Pipeline From Dead Leads — how Salesforce deployed its own Agentforce agents internally across sales, service, and Slack, recovering $1.7M from dormant leads in the first deployment.

A new AI automation case study, free, every week — in English, Spanish, and Catalan.

Sityos AI publishes real-world AI deployments with verified ROI data: no hype, no vendor press releases, just documented outcomes. New case study published every Monday at sityos.com.

Frequently Asked Questions

Is LangGraph free? Can a smaller company build something similar?

LangGraph is open source and free to use. LangSmith has a free tier for development and paid plans starting at $39/month for production workloads. The real cost is engineering: a multi-agent system like Super TOBi requires engineers experienced in LLM orchestration, state machine design, and production monitoring. A minimum viable version for a mid-size company could realistically be deployed in 6–12 weeks with 2–3 senior engineers. The architecture is documented in LangChain’s official case study.

How is this different from Intercom, Zendesk AI, or other chatbot platforms?

Off-the-shelf AI chatbots are retrieval-based: they search a knowledge base and return the most relevant answer. Super TOBi is agentic: it makes multi-step decisions, calls internal APIs (billing systems, CRM, product catalog), executes real actions (activating roaming, updating plans), and maintains conversational state across complex, branching interactions. The gap in resolution rates — 82% vs the 44.8% industry average — reflects the difference in what these architectures can actually do.

Does deploying AI agents at this scale require replacing existing CRM or billing systems?

No. Super TOBi integrates with Vodafone’s existing systems via APIs — it reads and writes to billing platforms, CRM, and product catalogs through standard interfaces. The LangGraph architecture is designed to be a layer on top of existing infrastructure, not a replacement. This is one reason the ROI case is compelling: the cost is the AI layer, not a platform migration.

The gap between telecom companies that have deployed agentic AI and those that haven’t is already measurable in NPS, cost-per-interaction, and one-call resolution rates. By 2027, it will be measurable in market share. The architecture Vodafone and Fastweb built is not proprietary — it’s documented, reproducible, and available to any team willing to build it. The tools exist. The playbook exists. The question is speed.