RAG with Knowledge Graphs reduces median customer service issue resolution time by 28.6% at LinkedIn
Conventional RAG for customer service treated historical issue tracking tickets as plain text, discarding intra-issue structure and inter-issue relations. Text segmentation further disconnected related content such as a ticket's problem description and its solution, degrading both retrieval accuracy and answer quality.
The baseline embedding-based retrieval approach lost structural ticket relationships by compressing documents into plain-text chunks, and text segmentation split tickets such that problem descriptions and their solutions appeared in separate chunks, causing incomplete answers.
The KG-augmented RAG system outperformed the baseline by 77.6% in MRR and by 0.32 in BLEU.
Deployed at LinkedIn's customer service team, the system reduced median per-issue resolution time by 28.6%, with mean resolution time dropping from 40 hours to 15 hours.
Show all 9 reported metrics
Frequently asked questions
What did this team achieve with this AI workflow?
The KG-augmented RAG system outperformed the baseline by 77.6% in MRR and by 0.32 in BLEU.
What tools did this team use?
LLM, GPT-4, BERT, E5, Qdrant, Neo4j, Jira.
What results were reported?
MRR improvement over baseline: 77.6%; BLEU score improvement over baseline: 0.32; Median per-issue resolution time reduction: 28.6%; Mean resolution time — tool not used: 40 Hours (source-reported, not independently verified).
What failed first in this deployment?
The baseline embedding-based retrieval approach lost structural ticket relationships by compressing documents into plain-text chunks, and text segmentation split tickets such that problem descriptions and their soluti…
How is this customer support AI workflow structured?
KG construction from historical tickets → Consumer query submitted → Query entity and intent identification → Embedding-based sub-graph retrieval → Graph query translation and retrieval → Answer generation by LLM → Fallback to text-based retrieval.