ConceptioArchivearXiv CS
arXiv CSopen access

Cross-Domain Query Translation for Network Troubleshooting: A Multi-Agent LLM Framework with Privacy Preservation and Self-Reflection

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
distributedsystemsprotocols
networking, internet, protocols, distributed systems

arXiv:2604.13353v1 [cs.NI] 14 Apr 2026

Cross-Domain Query Translation for Network Troubleshooting: A Multi-Agent LLM Framework with Privacy Preservation and Self-Reflection Nguyen Phuc Tran and Brigitte Jaumard

Karthikeyan Premkumar and Salman Memon

Computer Science and Software Engineering Concordia University Montréal (Qc) Canada [email protected]

Ericsson Montréal Montréal (Qc) Canada

Abstract—This paper presents a hierarchical multi-agent LLM architecture to bridge communication gaps between nontechnical end users and telecommunications domain experts in private network environments. We propose a cross-domain query translation framework that leverages specialized language models coordinated through multi-agent reflection-based reasoning. The resulting system addresses three critical challenges: (1) accurately classify user queries related to telecommunications network issues using a dual-stage hierarchical approach, (2) preserve user privacy through the anonymization of semantically relevant personally identifiable information (PII) while maintaining diagnostic utility, and (3) translate technical expert responses into user-comprehensible language. Our approach employs ReAct-style agents enhanced with selfreflection mechanisms for iterative output refinement, semanticpreserving anonymization techniques respecting k-anonymity and differential privacy principles, and few-shot learning strategies designed for limited training data scenarios. The framework was comprehensively evaluated on 10,000 previously unseen validation scenarios across various vertical industries. Index Terms—Multi-agent LLM systems, cross-domain query translation, privacy-preserving NLP, network troubleshooting, reflection-based reasoning, few-shot learning, telecommunications.

I. I NTRODUCTION Private networks deployed in vertical sectors such as hospital telemetry systems, factory automation, and autonomous vehicles have become critical infrastructure components. These networks rely on contemporary communication technologies, including 4G and 5G, and are increasingly supported by customer-facing LLM-based assistants that enhance user interaction [1]. However, when network problems occur, users often lack the specialized vocabulary needed to describe them in terms that are readily interpretable by network operators or telecommunications-focused LLM assistants. Moreover, indepth analysis requires vendor-specific knowledge and topology information that organizations cannot readily disclose because of privacy, security, and regulatory constraints. At the same time, users require explanations in plain language so that they can participate effectively in troubleshooting. For example, a user may report: "My screen has red dots blinking, and response is very slow when uploading

data". From a telecommunications perspective, this description may indicate radio resource contention, packet loss, elevated latency, or cell-reselection problems. Network professionals would instead examine key performance indicators (KPIs), signal-quality measurements, device configurations, and interference patterns. Directly forwarding such observations to a specialist telecom LLM raises several challenges: 1) Query Semantic Gap: Users employ visual or behavioral terminology, whereas telecom experts rely on network measurements and protocol-specific vocabulary. 2) Privacy Constraints: User communications may contain sensitive information, such as personal identifiers, location data, network topology, and device addresses. 3) Data Governance: Organizational policies prevent exchanging raw user questions with outside telecom specialists. 4) Response Comprehensibility: Experts use technical terminology (e.g., "PRB utilization exceeds 80%"), which must be translated for non-technical users. To address these challenges, this paper presents a multilayer hierarchical framework composed of cooperating specialized LLM agents. The main contributions are as follows: Two-Stage Hierarchical Classification: A combination of lightweight machine-learning models and LLM-based semantic reasoning for accurate telecom-query identification and intent extraction with limited labeled data [2], [3]. • Semantic-Preserving Anonymization: A privacyconscious transformation technique that applies contextaware entity detection and semantic criticality assessment to mask personally identifiable information (PII) while preserving diagnostic utility and supporting differential privacy and k-anonymity principles [4]. • Reflection-Augmented Agent Coordination: A multiagent environment based on ReAct reasoning patterns [5], reinforced with self-reflection loops to refine outputs, detect hallucinations, and correct errors without human supervisory intervention [6], [7]. •

Few-Shot Domain Adaptation: Prompt optimization under low-resource conditions through example selection and in-context learning [8], [9]. • Comprehensive Evaluation on 10,000 Scenarios: Validation on a diverse set of previously unseen queryresponse scenarios spanning multiple vertical domains and failure categories, together with a detailed analysis of the resulting performance trends. •

The remainder of the paper is organized as follows. Section II reviews related work. Section III describes the proposed architecture, its components, and the underlying implementation choices, including the classification algorithms, anonymization pipeline, and agent-coordination strategy. Section IV presents the evaluation on 10,000 previously unseen validation scenarios. Section V concludes the paper and outlines limitations and future work. II. R ELATED W ORK Domain adaptation for specialized NLP tasks is challenged by data scarcity and distribution shift. Prior work explores domain-adaptive pre-training and few-shot in-context learning [10], [11], as well as structured prompting and CoT-based intent detection [12]. These methods improve generalization with limited labels but remain sensitive to domain mismatch, motivating architectures that incorporate explicit reasoning and cross-domain guidance. A. Privacy Protection in AI Applications Privacy-preserving NLP commonly relies on differential privacy, federated learning, and PII masking [13]–[16]. However, telecom diagnostics depend on relational patterns, topology, device linkage, and temporal behavior, which naive masking can destroy. This gap highlights the need for anonymization mechanisms that balance structural fidelity with strong privacy guarantees. These observations point to an opportunity for new methods in cross-domain translation for telecom networks. The current literature offers limited support for explicit cross-agent validation or integration with external verification mechanisms, particularly when self-evaluation is unreliable. A framework that incorporates such verification can therefore address an important open problem in this domain. B. Coordination and Domain-Specific Adaptation in Telecom Telecommunications requires domain-adapted LLMs with strict verification due to specialized terminology, compliance constraints, and the need for diagnostically reliable outputs. While domain-specific pretraining and telecom-oriented RAG systems show improvements [17], [18], coordination and verification across agents remain underexplored. This motivates a unified framework that integrates multi-agent reasoning, privacy preservation, and cross-domain translation.

Fig. 1: Proposed Cross-Domain Query Translation Framework.

III. S YSTEM A RCHITECTURE AND M ETHODOLOGY A. Architectural Overview The proposed cross-domain query translation framework uses a hierarchical multi-agent design. Specialized agents work together on specific subtasks. They communicate through clear interfaces that define message formats and data schemas [19]. Fig. 1 shows the system built from three connected layers: 1) Customer Interaction Layer: This layer takes queries from end-users or other LLMs and links to the crossdomain LLM layer with standard protocols across sectors. 2) Cross-Domain LLM Layer: This layer connects customerfacing LLMs to telecom LLMs. It includes domain-aware query classification, privacy filtering, translation of user queries into telecom terms, response simplification, and a reasoning module that self-reflects on sub-component outputs. 3) Specialized LLM Layer: This layer talks directly to telecom LLMs to create technical diagnoses and recommendations. It receives the translated query from the crossdomain layer plus any feedback from self-reflection. The layered design keeps components separate. As a result, it simplifies the development and maintenance of each component without disrupting the overall system. It also supports the addition of new features and flexible scaling

across environments through the LangGraph framework1 with a router. Furthermore, prompts and evaluation criteria within the cross-domain LLM layer are managed with LangFuse2 , enabling dynamic control of prompts and criteria for each subcomponent.

domain-aware component. To achieve comprehensive coverage, we dynamically retrieve samples from unlabelled data using density-aware sampling to ensure broad coverage. On the other hand, alternative prompts elicit clarification inquiries in unclear instances (e.g., confidence 0.4 to 0.6). The classification is output as the following structure:

B. Component Specification and Detailed Methodology 1) Domain-Aware Component: This component translates query distributions to industrial domains using a soft classification strategy that includes LLM-based categorization and confidence scoring. For each query, it outputs a probability vector that shows domain likelihoods. Then, it adds confidence scores based on entropy and margin values. These outputs make domain decisions easier to understand and help prioritize contexts for later reasoning. The system relies on structured taxonomies and feature embeddings that capture industries, device operations, and past patterns [20]. Thus, it reduces misclassification and works with diverse scenarios. In addition, the component also includes prompt engineering modules to build domain-specific instructions and prompts from embeddings and templates. This step uses the reasoning and self-reflection method to refine itself. Consequently, it helps strengthen cross-domain knowledge transfer and limits semantic drift or hallucinations in LLM outputs. 2) Query Classification Component: The hierarchical architecture balances computational efficiency with semantic precision through a two-stage process. Stage 1 (Lightweight Classification): We use the SetFit classifier [21], fine-tuned on compact LLM models like Gemma 3B, which leverages few-shot techniques [22]. It optimizes embeddings using in-batch negatives and hard negative mining to achieve convergence with minimal labelled data. We assess confidence using margin-based scoring and probability calibration. High-confidence predictions proceed directly, while uncertain cases (e.g., near decision boundaries) escalate to Stage 2 to prevent error propagation. For a query q, the component generates embeddings eq using sentence transformers, which yield logit scores and softmax-normalized probabilities. Then, we calibrate confidence via the margin between top logits, and the following rule governs routing: RoutingS1 =   Accept Escalate to S2  Request Clarification

confidence ≥ 0.85 0.65 ≤ confidence < 0.85 confidence < 0.65

(1)

This strategy saves resources by skipping detailed investigation in high-confidence scenarios. Stage 2 (LLM-Based Refinement): To dissect the decision process for escalated queries, we use chain-of-thought (CoT) reasoning [8] to decompose the decision process. It generates and applies task-specific prompts to highlight inference patterns and constraints, drawing upon information from the 1 https://www.langchain.com/langgraph 2 https://langfuse.com/

Classification = (score ∈ [0, 1], intent ∈ I, context, confidence ∈ [0, 1])

(2)

where I denotes predefined intents, and context includes domain and temporal details. Algorithm 1 outlines the integrated process, enhancing accuracy for out-of-distribution queries while maintaining efficiency. Algorithm 1 Two-Stage Query Classification Require: Query q, high threshold θhigh , low threshold θlow , intent taxonomy I, retrieval function Retrieve(·) Ensure: Classification tuple, reflection feedback, escalation decision 1: eq ← SentenceTransformer(q) 2: logits ← ClassifierHead(eq ) 3: probs ← softmax(logits) ∗ 4: intent ← arg max(probs) ∗ 5: score ← max(probs) 6: margin ← score∗ − second_max(probs) 7: confidenceS1 ← Calibrate(score∗ , margin) 8: if confidenceS1 ≥ θhigh then 9: classification ← (score∗ , intent∗ , context, confidenceS1 ) 10: reflection ← GenerateReflection(classification, Cclassify ) 11: return classification, reflection, False 12: else if confidenceS1 < θlow then 13: return (None, “Need more info — please clarify”, True) 14: else 15: E ← Retrieve(q, diversity_metric, k = 5) 16: Prompt ← ConstructCoTPrompt(q, E, I) 17: reasoning, intent∗∗ , score∗∗ ← LLM(Prompt) 18: confidenceS2 ← ExtractConfidence(reasoning) 19: classification ← (score∗∗ , intent∗∗ , context, confidenceS2 ) 20: reflection ← GenerateReflection(classification, Cclassify ) 21: return classification, reflection, False 22: end if 3) Privacy Protection Component: This component employs a context-aware anonymization mechanism to balance privacy with semantic preservation, which is important in rootcause analysis and troubleshooting. We apply anonymization at three criticality levels during self-reflection: • High-Criticality: For entities such as network topologies, we employ structure-preserving methods to retain relational patterns for diagnosis. • Medium-Criticality: For entities like locations, we use k-anonymity-based generalizations [4] to prevent unique identification. • Low-Criticality: We fully redact entities such as PII, as they offer no diagnostic value.

This tiered approach incorporates differential privacy via noise injection, minimizing information loss compared to uniform methods and defending against inference attacks. Algorithm 2 formalizes this process [15], starting with entity recognition and criticality assessment through selfreflection. We assign pseudonyms that preserve structure to high-criticality items, generalize medium-criticality items with Laplace noise for ε-differential privacy, and replace lowcriticality items with placeholders. Algorithm 2 Semantic-Preserving Anonymization Require: Query string q, PII entity types E Ensure: Anonymized query q ′ , mapping M 1: Initialize M ← {} 2: Identify PII: {e1 , e2 , . . . , en } ← NER(q) 3: for each entity ei with type ti do 4: si ← SemanticCriticality(ei , q, ti ) 5: if si = HIGH then 6: e′i ← StructurePreserving(ei , ti ) 7: M[e′i ] ← ei 8: else if si = MEDIUM then 9: e′i ← CategoryReplacement(ei , ti ) 10: else 11: e′i ← [REDACTED] 12: end if 13: Replace ei with e′i 14: end for 15: return q ′ , M 4) Query Translation Component: Acting as a linguistic bridge, this component converts anonymized user queries into precise technical formats for specialized LLMs. Algorithm 3 provides a detailed implementation demonstration. We use semantic decomposition to identify diagnostic intents [12], extract constraints (e.g., network segments), and map terminology to domain ontologies. In addition, context enrichment from the domain-aware component allows us to infer relevant factors, such as latency needs in smart grids. Furthermore, the component refines the query using reasoning and selfreflection techniques to make it align with the requirements for technical and constraint validity. This method generates consistent queries with the specialist LLM, decreasing ambiguity and increasing diagnostic accuracy. 5) Response Simplification Component: This component converts technical replies to plain language while maintaining diagnostic consistency. It employs multi-pass processing, recognizes jargon, substitutes simplifications, and uses selfreflection to evaluate. We evaluate readability using Flesch Reading Ease (FRE) metrics [23] to measure the readability. Algorithm 4 details the pipeline of this component. First, we extract concepts and actions, map them via a lexicon refined through self-reflection, and verify the output against thresholds to avoid over-simplification. We keep quantitative elements unchanged to preserve technical accuracy. Finally, we use an on-premise LLM-generated mapping (see Table I) to convert technical terms into user-friendly expressions.

Algorithm 3 Query Translation Require: Anonymized query qanon , domain context ctxdomain , ontology Otelecom Ensure: Technical query qtech , constraints Ctech , confidence conftrans 1: intent ← IntentClassifier(qanon ) 2: Cexplicit ← ConstraintExtractor(qanon ) 3: Cimplicit ← InferConstraints(ctxdomain , Otelecom ) 4: Call ← Cexplicit ∪ Cimplicit 5: for each user term tuser in qanon do 6: ttech ← OntologyLookup(tuser , Otelecom ) 7: end for 8: qintermediate ← FormulateQuery(qanon , Call , Otelecom ) 9: reflection ← Reflect(qintermediate , Cchecklist ) 10: if reflection.issues > 0 then 11: qintermediate ← RefineQuery(qintermediate , reflection) 12: end if 13: conftrans ← ValidateTranslation(qintermediate , qanon ) 14: qtech ← qintermediate 15: Ctech ← FormalizeConstraints(Call ) 16: return qtech , Ctech , conftrans Algorithm 4 Technical Response Simplification Require: Technical response rtech , user query p Ensure: Simplified response ruser 1: Extract concepts: C ← ConceptExtractor(rtech ) 2: Build mappings: T 3: Identify actions: A ← ActionExtractor(rtech ) 4: for each action a ∈ A do 5: a′ ← SimplifyAction(a, p, T ) 6: Append a′ to ruser 7: end for 8: Generate verification prompt 9: check ← LLM(v ⊕ ruser ) 10: if check.confidence < θverify then 11: Regenerate with adjusted complexity 12: end if 13: return ruser

6) Reasoning and Self-Reflection Component: Integrated with the reasoning model, this component uses self-reflection to check the output quality at each pipeline stage. Based on the Reflexion and Self-Refine frameworks [6], [7], it generates written feedback by comparing the output against checklists and user queries. We then use prompts to get feedback on semantic correctness, precision, and alignment, and we save these results for future improvement. Building on the ReAct paradigm [5], multi-agent coordination incorporates reflection at decision points: Agent Outputt+1 = f (Actiont , Observationt , Reflectiont )

(3)

Technical Term RSRP (Reference Signal Received Power) SINR (Signal-to-Interference-plus-Noise Ratio) RLC Retransmission PRB Utilization Cell Reselection Backhaul Congestion DU Latency Spike

User-Friendly Version Signal Strength Signal Quality Data Re-sending Network Congestion Tower Switching Overloaded Links Processing Delay

improve the accuracy and eliminate bias in self-reflection, the critic model that provides feedback is another LLM agent. IV. E VALUATION P ROPOSAL F RAMEWORK A. Validation Dataset

We construct the validation dataset through a systematic approach that combines existing telecommunications questionTABLE I: LLM-Generated Mappings from Telecom Terms to answer pairs with domain-specific augmentation. The dataset Plain English Examples generation follows three stages: base data selection, vertical domain sampling, and intent diversification. In detail, TeleReflections are produced as: QnA [24] is used as the foundation for base question and Reflectiont = LLM("Evaluate output"⊕CheckListagent ) (4) expected answer pairs. This baseline ensures that the generated data is consistent with prior telecommunications datasets and reduces bias in problem formulation. TABLE II: Component-Specific Self-Reflection Checklists To generate samples specific to vertical domains, we apply a self-reflection method to randomly select from a predefined Component Self-Reflection Checklist Items set of industrial applications, as demonstrated in the Fig. 2a. DomainThe fields of study chosen include healthcare telemetry, ve• Probability distribution validity and entropy calibration Aware • Confidence score alignment with domain assignment like- hicular communication (V2X), mining operations, and factory automation, which may be altered depending on the validalihood • Coverage of all relevant industrial verticals tion situation and distribution. Fig. 2b illustrates the vertical • Feature embedding coherence with domain ontologies domain distribution in our dataset. For each base question • Absence of competing domain interpretations from TeleQnA, we contextualize it within the selected vertical • Prompt template relevance to the identified domain by introducing domain-specific constraints and requirements • Hallucination risk assessment through self-reflection prompt generation. This approach mainQuery tains the core problem structure while incorporating domain• Margin-based confidence score calibration Classifica• Decision boundary proximity assessment tion relevant context. • Alternative classification interpretations considered As a consequence, the generated dataset consists of 10,000 • Escalation threshold appropriateness validation scenarios. The dataset and prompts used in this • Feature space representation completeness paper are available in the accompanying project repository. • Exemplar diversity and semantic coverage (Stage 2) Furthermore, the intent distribution shows the natural fre• Chain-of-thought reasoning transparency quency of issues encountered in telecommunications systems, Privacy with intermittent connectivity and data transmission failures • Comprehensive PII entity detection and classification Protection • Criticality level assignment accuracy accounting for the majority of the dataset, while rare scenarios • Residual re-identification vulnerability assessment such as packet loss and network authentication issues are also • k-anonymity group size validation included. This distribution provides that the model will come • Structure preservation fidelity for network topology across both common failure modes and edge cases during • Noise injection parameter appropriateness • Differential privacy guarantee verification validation. Fig. 3 provides details on intent categories and their respective frequencies within our dataset. In addition, Query • Diagnostic intent extraction completeness Fig. 2c illustrates the distribution of query token length. The Transla• Temporal and spatial constraint identification tion dataset ranges from simple, short queries that describe basic • User terminology mapping to technical nomenclature connection concerns to complicated, lengthy questions that • Domain context integration accuracy include many network levels, various failure symptoms, and • Implicit parameter inference validation domain-specific terms. This query variation evaluates if the • Technical specification precision and unambiguity • Translation confidence metadata calibration model performs consistently for both clear, well-articulated issue statements and verbose or ambiguous real-world scenarResponse • Technical accuracy preservation versus original ios. Simplification

• Quantitative finding retention without modification • Lexicon mapping appropriateness and consistency • Readability metric compliance (Flesch-Kincaid 7–9) • Semantic ambiguity absence • Domain expert information integrity retention • Cognitive accessibility for non-specialists

We use the component-specific checklists in Table II to ensure targeted assessments, which foster consistent quality across the system. Please keep in mind that, in order to

B. Evaluation method We adopt a hybrid evaluation strategy that combines deterministic statistical metrics with an LLM-as-a-judge framework. For the domain-aware classification and privacyprotection modules, we report accuracy, precision, recall, and F1 score. Privacy evaluation additionally balances anonymization strength with diagnostic utility through three metrics: PII Recall (correctly masked sensitive entities), Token Retention

(b) Vertical industrial domains.

(a) Self-Reflection data generator. (c) Token length.

Fig. 2: Dataset overview: (a) The data generation pipeline, (b) Distribution of vertical industrial domains, and (c) Distribution of token length.

translated technical query maintains the reasoning implied by the original user statement. Table III presents a simplified endto-end example using our framework. C. Evaluation

Fig. 3: Intent categories.

Rate (non-sensitive content preserved), and the Preservation Score (semantic similarity between original and anonymized queries). Since cross-domain translation lacks explicit ground truth, an LLM-as-a-judge is used to provide qualitative assessment. In particular, we employed the TSLAM model3 , which is reported in the GSMA Open-Telco LLM Benchmarks4 . We selected TSLAM due to its design and fine-tuned it for telecommunications and its ability to be deployed locally within our internal system. Following the Critic Model architecture [25], a telecom-specialized LLM evaluates outputs using the component-specific checklists in Table II. The judge measures hallucination rate, constraints introduced without user evidence, and diagnostic consistency, verifying that the 3 https://huggingface.co/NetoAISolutions/TSLAM 4 https://huggingface.co/spaces/otellm/leaderboard

Reported in Table IV, the Domain-Aware component demonstrated strong robustness across all industrial verticals, achieving an overall F1 score of 0.95 and an accuracy of 0.927, confirming the effectiveness of the soft classification strategy. Factory Automation attained the highest performance (F1 = 0.96), attributed to the sector’s well-defined communication terminology, while Smart Buildings showed slightly lower performance (F1 = 0.91), likely due to overlapping vocabulary with general enterprise Wi-Fi scenarios, which contributed to minor classification ambiguity. We conducted an ablation study to assess the effect of the self-reflection (LLM-as-a-judge) mechanism on privacy enforcement, with results summarized in Table V. Both the baseline and reflection-augmented models achieved identical PII recall (93.25%) and perfect precision (1.0), indicating consistent detection and masking of sensitive entities. However, the reflection-enabled variant produced a lower preservation score (80.16 vs. 84.65), reflecting stricter anonymization behavior. This reduction is expected, as the self-reflection loop generalizes medium-criticality entities through k-anonymity rather than retaining their raw form, thereby enforcing a more conservative privacy posture aligned with high-criticality handling requirements. At the same time, the higher tokenretention score suggests that the reflection-enabled model preserves more non-sensitive contextual tokens, which helps maintain the structural coherence of the anonymized query despite stricter semantic generalization. The results in Table VI indicate that the query-to-technical translation component achieves strong semantic alignment,

TABLE III: An Example of End-to-End Cross-Domain Processing Pipeline Pipeline Stage

Agent Output / Action

User Input (or Domain X LLM)

"Dr. Ramirez reports real-time heart rate data from patient John Smith’s wearable (ID: WM-47B-22, IP: 10.24.1.15) stopped updating in the ICU."

1. Domain-Aware

Vertical: Healthcare Telemetry (Confidence: 0.96) Context: Remote Patient Monitoring / Latency-Critical.

2. Query Classification (Algorithm 1)

Decision: Stage 1 Fast-Path (SetFit Score: 0.92 > θhigh ). Intent: Network_Connectivity_Loss. Routing: Valid Telecom Fault → Proceed to Privacy Filter.

3. Privacy Agent (Algorithm 2)

Action: High-Criticality Preservation (Topology); Low-Criticality Redaction. Output: "Physician reports telemetry stopped from [DEVICE_WEARABLE] (IP: [IP_PATIENT]) at [REDACTED_LOC]. Patient is post-op."

4. Translation Agent (Algorithm 3)

Tech Intent: telemetry_interruption, MFAF_data_mapping, iot_connectivity. Translated Query: "Diagnose cause of data stream termination for IoT device [IP_PATIENT] in Core Network. Check MFAF configuration for outbound notification mapping failures."

5. Telecom Expert (Specialized LLM)

Technical Diagnosis: The issue matches the Nmfaf_3daDataManagement_Deconfigure operation (3GPP Rel-18). The MFAF has terminated the mapping between the analytics stream and the notification endpoint, halting outbound data flow.

6. Simplification (Algorithm 4)

User-Friendly Response: "The patient monitor stopped updating because a ’Deconfigure’ command disconnected the data stream from the central dashboard. This is a configuration setting in the network (MFAF), not a failure of the device itself." Readability Score (FRE): 65.2 (Standard)

TABLE IV: Domain-aware performance Industry Healthcare Factory Smart Buildings Mining Operations Overall Metric PII Recall Precision F1 Score Preservation Score Token Retention

F1 0.93 0.96 0.91 0.93 0.95

With Self-Reflection 93.25% 1 0.96 80.16 / 100 89.86%

Accuracy 0.91 0.94 0.89 0.92 0.92 Without Self-Reflection 93.25% 1 0.96 84.65 / 100 90.00%

the original query within the target vertical domain. Metric

Score (/100)

Average Flesch Reading Ease Average Domain Appropriateness Average Clarity & Simplicity Average Completeness Average Actionability

55.31 78.59 74.13 75.43 73.89

Average Overall Readability

74.67

TABLE VII: Readability Evaluation of Generated Responses

TABLE V: Privacy Protection Validation Results

with an average semantic overlap of 79.24 and similarity of 79.37, suggesting that the technical reformulation preserves most of the user’s intent and contextual meaning. The coverage score of 73.10 shows that the model captures most required technical attributes, although some implicit parameters remain omitted in complex diagnostic scenarios. Specifically, the hallucination rate remains low at 13.61, indicating that the model rarely introduces technical constraints not supported by Metric Average Semantic Overlap Average Coverage Average Similarity Average Hallucination Rate

Score (/100) 79.24 73.10 79.37 13.61

TABLE VI: Query-to-technical translation performance.

The readability results in Table VII show that the generated responses achieve an overall readability score of 74.67, indicating that the system consistently produces explanations suitable for non-technical users. The domain-appropriateness score of 78.59 confirms that responses remain aligned with telecommunications concepts while avoiding unnecessary jargon. Clarity and Simplicity (74.13) and Completeness (75.43) further demonstrate that the reformulated answers preserve essential diagnostic information without overwhelming users. The actionability score of 73.89 indicates that the model provides guidance that is sufficiently concrete for users to follow. Although the FRE score (55.31) reflects moderate linguistic complexity, the combined metrics show that the system effectively balances technical accuracy with user-friendly communication. This score is expected, as the system must retain essential terminology from both telecommunications and the target vertical domain (e.g., healthcare), making full simplification infeasible without losing diagnostic precision.

V. C ONCLUSION This paper introduced a cross-domain query translation framework that integrates multi-agent LLM coordination, hierarchical classification, semantic-preserving anonymization, and reflection-driven reasoning to bridge the gap between nontechnical user inputs and telecom diagnostics. Our evaluation across 10,000 synthetic validation scenarios demonstrates strong domain classification accuracy, faithful technical translation with low hallucination rates, and readable user-facing responses while maintaining privacy constraints. Future work will focus on expanding empirical validation with real-world telecom data, incorporating human expert assessments, and calibrating the LLM-as-a-judge with multicritic or ensemble verification. We also plan to benchmark against RAG-based and domain-adapted telecom LLM systems, and to strengthen the privacy mechanism with formal differential privacy guarantees. ACKNOWLEDGMENT The first author was supported by an internship at Ericsson in Montréal, Québec, Canada. We would like to thank Yiwei Wen and Bo Yang for their valuable support throughout this project. R EFERENCES [1] P. Ahokangas, M. Matinmikko-Blue, S. Yrjola, V. Seppanen, H. Hammainen, R. Jurva, and M. Latva-aho, “Business models for local 5G micro operators,” IEEE Transactions on Cognitive Communications and Networking, vol. 5, no. 3, pp. 730–740, 2019. [2] L. Tunstall, N. Reimers, U. E. S. Jo, L. Bates, D. Korat, M. Wasserblat, and O. Pereg, “Efficient few-shot learning without prompts,” in Conference on Neural Information Processing Systems (NeurIPS), New Orleans, USA, 2022, poster. [3] T. Brown, B. Mann, N. Ryder, M. Subbiah et al., “Language models are few-shot learners,” Advances in Neural Information Processing Systems, vol. 33, pp. 1877–1901, 2020. [4] L. Sweeney, “k-anonymity: A model for protecting privacy,” International Journal of Uncertainty, Fuzziness and Knowledge-Based Systems, vol. 10, no. 05, pp. 557–570, 2002. [5] S. Yao, J. Zhao, D. Yu, N. Du, I. Shafran, K. Narasimhan, and Y. Cao, “ReAct: Synergizing reasoning and acting in language models,” in International Conference on Learning Representations (ICLR), 2023, pp. 1 – 13. [6] N. Shinn, F. Cassano, A. Gopinath, K. Narasimhan, and S. Yao, “Reflexion: Language agents with verbal reinforcement learning,” in Advances in Neural Information Processing Systems (NIPS), 2023, pp. 8634 – 8652. [7] A. Madaan et al., “Self-refine: Iterative refinement with self-feedback,” in Advances in Neural Information Processing Systems (NIPS), vol. 36, 2023. [8] J. Wei, X. Wang, D. Schuurmans, M. Bosma, B. Ichter, F. Xia, E. Chi, Q. Le, and D. Zhou, “Chain-of-Thought prompting elicits reasoning in large language models,” in Advances in Neural Information Processing Systems (NIPS), vol. 35, 2022, pp. 24 824 – 24 837. [9] N. Reimers and I. Gurevych, “Sentence-BERT: Sentence embeddings using siamese BERT-networks,” in Conference on Empirical Methods in Natural Language Processing and International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), 2019, pp. 3982–3992. [10] A. Ramponi and B. Plank, “Neural unsupervised domain adaptation in nlp—a survey,” in International Conference on Computational Linguistics (COLING), 2020, pp. 6838–6855. [11] J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “BERT: Pre-training of deep bidirectional transformers for language understanding,” in North American Chapter of the Association for Computational Linguistics: Human Language Technologies, vol. 1, Minneapolis, Minnesota, 2019, pp. 4171–4186.

[12] Q. Zhou, H. Xu, Y. Wang, X. Dong, and H. Zhang, “Llm-guided semantic relational reasoning for multimodal intent recognition,” The 2025 Conference on Empirical Methods in Natural Language Processing (EMNLP 2025), 2025. [13] F. He, T. Zhu, D. Ye, B. Liu, W. Zhou, and P. Yu, “The emerged security and privacy of llm agent: A survey with case studies,” ACM Computing Surveys, 2024. [14] K. Bonawitz, P. Kairouz, B. McMahan, and D. Ramage, “Federated learning and privacy,” Communications of the ACM, vol. 65, no. 4, pp. 90–97, 2022. [15] I. Habernal, J. L. Leidner, and I. Rehbein, “Privacy-preserving natural language processing,” in Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics: Tutorial Abstracts. Association for Computational Linguistics, 2023, pp. 23–29. [16] D. Mahendran, S. Mcdonagh, and D. Doyle, “Privacy-preservation in the context of natural language processing: An overview,” IEEE Access, vol. 9, pp. 147 198–147 213, 2021. [17] H. Zou, Q. Zhao, Y. Tian, L. Bariah, F. Bader, T. Lestable, and M. Debbah, “Telecomgpt: A framework to build telecom-specific large language models,” IEEE Transactions on Machine Learning in Communications and Networking, 2025. [18] A.-L. Bornea, F. Ayed, A. De Domenico, N. Piovesan, and A. Maatouk, “Telco-RAG: Navigating the challenges of retrieval augmented language models for telecommunications,” in IEEE Global Telecommunications Conference - GLOBECOM, 2024, pp. 2359–2364. [19] X. Li, S. Wang, S. Zeng, Y. Wu, and Y. Yang, “A survey on llmbased multi-agent systems: workflow, infrastructure, and challenges,” Vicinagearth, vol. 1, no. 1, p. 9, 2024. [20] S. Minaee, N. Kalchbrenner, E. Cambria, N. Nikzad, M. Chenaghlu, and J. Gao, “Deep learning–based text classification: A comprehensive review,” ACM Computing Surveys, vol. 54, no. 3, pp. 1–40, 2021. [21] L. Tunstall, N. Reimers, U. E. S. Jo, L. Bates, D. Korat, M. Wasserblat, and O. Pereg, “Efficient few-shot learning without prompts,” arXiv preprint arXiv:2209.11055, 2022. [22] A. Yehudai and E. Bandel, “FastFit: Fast and effective few-shot text classification with a multitude of classes,” in Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 3: System Demonstrations), Mexico City, Mexico, 2024, pp. 174–184. [23] F. Marulli, L. Campanile, M. S. de Biase, S. Marrone, L. Verde, and M. Bifulco, “Understanding readability of large language models output: an empirical analysis,” Procedia Computer Science, vol. 246, pp. 5273– 5282, 2024. [24] A. Maatouk, F. Ayed, N. Piovesan, A. De Domenico, M. Debbah, and Z.-Q. Luo, “TeleQnA: A benchmark dataset to assess large language models telecommunications knowledge,” IEEE Network, pp. 1 – 7, 2025. [25] H. Wei, S. He, T. Xia, F. Liu, A. Wong, J. Lin, and M. Han, “Systematic evaluation of LLM-as-a-judge in LLM alignment tasks: Explainable metrics and diverse prompt templates,” in International Conference on Learning Representations (ICLR), 2025, pp. 1 – 13.

Record · ID 13991 · SHA-256 ea9b333d4ed86d89
Conceptio Open Knowledge Archive — every document is proof-bundled with source, license, and retrieval metadata.