Pith. sign in

REVIEW 4 major objections 5 minor 59 references

Dialogue Benchmark Generation from Knowledge Graphs with Cost-Effective Retrieval-Augmented LLMs

T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Chatty-Gen is a fully automated RAG platform that produces dialogue benchmarks from knowledge graphs, cutting DBpedia generation from about 30 hours to roughly 10 minutes while matching human-built quality.

desk verdict A genuinely useful system for KG-based dialogue benchmark generation, but the paper overclaims quality and the evaluation contradicts that claim. read the letter →

arxiv 2501.09928 v1 pith:ZH4W2F56 submitted 2025-01-17 cs.CL cs.AI

classification cs.CLcs.AI
keywords dialoguebenchmarkgenerationknowledgegraphsretrieval-augmentedLLMhallucinationmitigationSPARQLquerymulti-stagepromptingentitysubgraphextractionautomation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper introduces Chatty-Gen, a platform that automatically builds dialogue benchmarks from a knowledge graph (KG) by combining retrieval-augmented generation with a multi-stage prompting pipeline. The claim is that this is the first fully automated system to generate dialogues, not just standalone questions, from arbitrary KGs, and that it does so at a fraction of the cost and time of existing approaches. The system samples representative entities, extracts their subgraphs, asks an LLM to produce self-contained questions and SPARQL queries, and then rewrites the questions into a coherent dialogue, validating each stage automatically. The authors report that on DBpedia, benchmark generation drops from about 30 hours with the Maestro baseline to about 10 minutes, and that dialogue quality is comparable to a human-built benchmark. If right, this makes domain-specific chatbot evaluation cheap and customizable.

What carries the argument

The load-bearing mechanism is the multi-stage pipeline with assertion-based validation. Each stage is given a simple zero-shot prompt rather than one complex prompt; after each stage, a validator checks the output against explicit conditions: questions must explicitly name the entity, triples must belong to the provided subgraph, SPARQL queries must be syntactically correct and consistent with the subgraph, and the dialogue must start with an independent question and use pronouns appropriately in later questions. Invalid outputs are retried up to three times before the seed entity is discarded. A second mechanism is subgraph summarization, which collapses repeated predicates to a single modified triple with the object removed, shrinking the prompt while preserving the facts needed for question and query generation.

What would settle it

Take any dialogue that passed Chatty-Gen's validation, run its SPARQL queries directly against the full KG endpoint, and check each returned answer against the source triples in the original entity subgraph; if a nontrivial fraction of answers name entities or values that are not in the subgraph, or if the queries return empty results for claimed questions, the hallucination-mitigation claim is disproved.

Watch

Extended reading notes

Core claim

The central discovery is that decomposing KG-to-dialogue generation into small validated stages makes the task tractable for LLMs of widely varying capability, including open-source models, without sacrificing quality. The paper shows that a single-prompt approach fails for most models, while a pipeline of (1) subgraph summarization, (2) independent question generation, (3) SPARQL query generation, and (4) dialogue assembly, with assertion rules checked after each stage, raises success rates from near zero to over 90 percent for GPT-3.5 and to 100 percent for GPT-4o and a combination of open-source models. The platform also eliminates the expensive preprocessing of the whole KG by querying the SPARQL endpoint on demand to find seed entities and their subgraphs. The authors claim this makes Chatty-Gen the first fully automated RAG-based dialogue benchmark generator for KGs and that it significantly outperforms Maestro in both question quality and time.

Load-bearing premise

The approach assumes that the stage-level assertion rules—checking that triples appear in the subgraph, questions are self-contained, SPARQL syntax parses, and queries agree with the summarized subgraph—are strong enough to guarantee the generated dialogues are factually correct against the full knowledge graph.

Editorial extensions

If this is right

  • Benchmark creation stops being a manual bottleneck: domain-specific dialogue benchmarks can be generated on demand for any SPARQL-enabled KG without writing templates or labeling data.
  • Open-source LLMs can replace commercial APIs for this task, so high-quality benchmarks no longer require expensive proprietary models.
  • The stage-wise checkpoints catch hallucinations early, meaning the system rarely has to restart from scratch on a large KG.
  • The same four-stage recipe can be reused for other KG-to-text tasks such as QA-pair generation or entity summarization, since the assertion rules are KG-agnostic.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because correctness is defined by the assertion rules against the summarized subgraph, not by independent verification against the full KG, a released Chatty-Gen benchmark would be stronger if it also published the supporting triples and the executed SPARQL answers for external checks.
  • The entity-skipping policy trades coverage for cost; a natural extension the paper leaves open is a correction module that repairs bad questions or queries instead of abandoning an entity, which would matter for users who need specific head or tail entities.
  • Sampling proportionally to node-type distribution means benchmark content follows the KG's own biases; a testable variant would compare uniform sampling against distribution-based sampling to see which yields more useful evaluation coverage.
  • The quality comparison to ConvQuestions rested on an LLM judge; a human-annotator replication would test whether the parity claim survives outside automated evaluation.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper presents Chatty-Gen, a multi-stage retrieval-augmented generation platform that automatically produces dialogue benchmarks from a knowledge graph. The pipeline selects representative node types and seed entities, predicts human-readable entity labels, extracts subgraphs as dialogue context, and then generates independent questions, SPARQL queries, and a final coherent dialogue in separate stages, with assertion-based validation between stages. The system is evaluated on DBpedia, YAGO, DBLP, and MAG using several commercial and open-source LLMs. The authors report that Chatty-Gen reduces benchmark generation time dramatically compared with Maestro and produces dialogues whose quality is comparable to the human-generated ConvQuestions benchmark, while claiming in the abstract and contributions that Chatty-Gen 'significantly outperforms state-of-the-art systems in both quality and time performance.'

Significance. If fully substantiated, the paper would describe a useful, cost-effective, and largely automatic way to construct KG-grounded dialogue benchmarks, and it would be the first fully automated RAG-based platform for this task. Strengths of the work include public code, a pipeline that decomposes generation into independently validatable stages, experiments across multiple real KGs and many LLMs, and a subgraph summarization method that reduces token consumption while improving SPARQL correctness in the reported experiments. However, the current evidence does not support the headline quality-superiority claim: the LLM-judge comparison in Section 7 shows mostly ties and a preference for the human benchmark when forced, no human evaluation is reported, and the sample sizes are too small for statistical significance. The time comparison also rests on a partially completed Maestro run for DBpedia.

major comments (4)
  1. [Abstract and Section 7, Table 5] The claim that Chatty-Gen 'significantly outperforms state-of-the-art systems in both quality and time performance' is not supported by the paper's own quality evaluation. In Table 5, the Gemini judge marks 70% (GPT-4o) and 80% (Multi-LLM-1) of dialogue pairs as ties; when a preference is forced, ConvQuestions is favored in 20-25% of cases while Chatty-Gen is favored in only 0-5%. This is evidence of rough equivalence at best, and of inferiority on forced choices, not significant superiority. Moreover, ConvQuestions is a human-generated benchmark rather than a system-generated dialogue benchmark, so the comparison does not directly support the stated claim. I recommend reframing the abstract and contributions to claim comparable quality at lower cost, and supplementing the LLM-judge result with a human evaluation or at least significance testing on repeated runs.
  2. [Section 6.4, Table 4] All headline comparisons across LLMs are based on only 20 generated dialogues per configuration, with no repeated trials, confidence intervals, or significance tests. The reported success rates vary widely across models (e.g., 22% for Gemini-1.5-pro, 41% for LLAMA-3-8b-inst, 100% for GPT-4o on YAGO), so the claim of 'consistent model and system performance across multiple LLMs' is not established. The reader cannot tell whether the differences between the multi-stage and single-prompt approaches, or between different LLMs, are real or within run-to-run noise. Please report variance over repeated runs or otherwise quantify the stability of the success-rate metric.
  3. [Section 6.3, Table 3, and Section 6.2] The DBpedia time comparison appears to count an incomplete Maestro run. The text states that for DBpedia 'the process was halted at 18,211 out of 994,592 predicates due to memory limitations,' yet Table 3 reports a DBpedia Maestro time of 30.77 hours. If this number is projected or partial, the 99% time improvement claim is not a fair end-to-end comparison. Please clarify whether the Maestro entry reflects a completed run, a projection, or a partial run, and otherwise report a like-for-like comparison on a KG where Maestro can complete.
  4. [Section 5.3 and Algorithm 3] The assertion-based validation is weaker than the paper's hallucination-mitigation claims. Algorithm 3 summarizes triples by removing object values, yielding modified triples of the form ⟨e, p, None⟩ or ⟨None, p, e⟩. The query validator checks syntactic validity and consistency with the summarized subgraph information, but it cannot check whether the SPARQL query answers the natural-language question: a question about a birth date paired with a query over birthPlace could pass if both predicates occur in the subgraph. Thus the validation does not guarantee factual correctness of the generated dialogue or semantic equivalence between question and query. Please either add a stronger validation step (e.g., execute the query against the full KG and compare answers with the original triple objects) or soften the correctness claims accordingly.
minor comments (5)
  1. [Section 1] The introduction says evaluation uses 'four diverse real-world KGs: DBpedia, Yago, and DBLP,' but lists only three; MAG is described later. Please correct the enumeration.
  2. [Table 4] The column headers 'Dialogue-E' and 'Parsing-E' are not defined in the table or text; please define these error categories and clarify whether they are counts per seed entity or per generated dialogue.
  3. [Section 5.3] When an output fails validation, the retry mechanism sends 'the same prompt and inputs' without providing feedback about the validation failure; this may cause repeated failures and could partly explain the low success rates of some open-source models. Consider reporting whether retries use corrective feedback.
  4. [Section 7] The use-case comparison reports that Chatty-Gen produces 'dialogues of comparable quality in about 15 minutes at a cost of just $0.27 USD,' but the time and cost numbers are not clearly tied to a reproducible configuration (number of entities, LLM, retries). Please specify the configuration used for this statement.
  5. [Section 8] There is a typo in 'we propsoed a multi-stage approach' (should be 'proposed'). A careful proofread would also catch other minor errors, e.g., 'an entity' vs. 'a entity' in Section 4.3.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the pipeline's outputs are checked against external KG facts and external benchmarks, with only a non-load-bearing self-citation.

full rationale

Chatty-Gen's claimed derivation chain is not circular. The generation pipeline consumes KG subgraphs retrieved by SPARQL as external context; the summarized subgraph (Algorithm 3) is a deterministic projection of KG triples, not an LLM output. SPARQL queries are generated from questions plus triples and then executed against the KG, so answers (the benchmark ground truth) come from an external source. Assertion rules in Section 5.3 are self-consistency checks (membership of triples in the provided subgraph, syntactic validity of SPARQL, dialogue-form constraints); they are engineering gates, not fitted parameters renamed as predictions. The self-citation [26] (KGQAn) appears only in a limitations sentence about existing QAS lacking dialogue support and is not load-bearing. The quality comparison against ConvQuestions via Gemini 1.5 is weak evidence, and Table 5 actually shows mostly ties, contradicting the abstract's 'significantly outperforms' wording; however, that is an evidential/correctness problem, not a definitional equivalence. Time comparisons against Maestro are external. No equation in the paper reduces a claimed result to its own inputs.

Assumptions & free parameters 7 free parameters · 5 assumptions · 0 invented entities

Chatty-Gen's behavior is governed by hand-set thresholds and structural assumptions about KGs and LLMs rather than by learned parameters. The central claim of high-quality, representative benchmarks rests on these choices and on the untested sufficiency of the validators.

free parameters (7)
  • Rare types threshold R = 1% of KG entities
    Filters out node types below 1% of entities; chosen by hand in Section 6.2.
  • Shadowed parent threshold S = 99%
    Removes parent types whose entities mostly belong to one child type; chosen by hand in Section 6.2.
  • Entity batch size BZ = 10,000
    SPARQL retrieval batch size for entity sampling in Algorithm 2.
  • Hop count h = 1
    Subgraph extraction radius around the seed entity in Algorithm 2.
  • Predicate direction = both outgoing and incoming
    Determines which triples enter the subgraph; set in Section 6.2.
  • Questions per dialogue nq = 5 in evaluation
    Used in the experiments reported in Table 4.
  • Retry limit = 3
    Maximum attempts before discarding a seed entity in Section 5.3.
assumptions (5)
  • domain assumption KG node-type distribution is a reliable proxy for domain topics and benchmark coverage.
    Used in Algorithm 1 to allocate dialogue counts per type; if the distribution is skewed, the benchmark coverage is skewed.
  • domain assumption An LLM can select a correct entity-label predicate from the list of string-literal predicates under zero-shot prompting.
    Section 4.2 Equation 1; wrong labels would degrade question quality.
  • domain assumption A subgraph with enough unique predicates is a sufficient context for generating a meaningful dialogue.
    Section 4.3 and Definition 2; if not, generated questions are repetitive or artificial.
  • domain assumption Assertion-based validators catch hallucinations and guarantee output correctness.
    Section 5.3; the paper provides no proof or measurement of validator recall.
  • domain assumption SPARQL endpoints with built-in indices support efficient count and subgraph queries on large KGs.
    Sections 4.1 and 4.3 complexity claims depend on Virtuoso indexes.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Dialogue Benchmark Generation from Knowledge Graphs with Cost-Effective Retrieval-Augmented LLMs." pith.science (2026). https://pith.science/paper/ZH4W2F56

@misc{pith2026250109928,
  author       = {Pith},
  title        = {Pith review of: Dialogue Benchmark Generation from Knowledge Graphs with Cost-Effective Retrieval-Augmented LLMs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/ZH4W2F56}},
  note         = {Machine review of arXiv:2501.09928}
}
read the original abstract

Dialogue benchmarks are crucial in training and evaluating chatbots engaging in domain-specific conversations. Knowledge graphs (KGs) represent semantically rich and well-organized data spanning various domains, such as DBLP, DBpedia, and YAGO. Traditionally, dialogue benchmarks have been manually created from documents, neglecting the potential of KGs in automating this process. Some question-answering benchmarks are automatically generated using extensive preprocessing from KGs, but they do not support dialogue generation. This paper introduces Chatty-Gen, a novel multi-stage retrieval-augmented generation platform for automatically generating high-quality dialogue benchmarks tailored to a specific domain using a KG. Chatty-Gen decomposes the generation process into manageable stages and uses assertion rules for automatic validation between stages. Our approach enables control over intermediate results to prevent time-consuming restarts due to hallucinations. It also reduces reliance on costly and more powerful commercial LLMs. Chatty-Gen eliminates upfront processing of the entire KG using efficient query-based retrieval to find representative subgraphs based on the dialogue context. Our experiments with several real and large KGs demonstrate that Chatty-Gen significantly outperforms state-of-the-art systems and ensures consistent model and system performance across multiple LLMs of diverse capabilities, such as GPT-4o, Gemini 1.5, Llama 3, and Mistral.

Figures

Figures reproduced from arXiv: 2501.09928 by the authors.

Figure 1
Figure 1. An illustration of the steps required to generate a [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Chatty-Gen’s architecture includes two main phases: A) Dialogue Context Extraction: involves a node-type retrieval method to predict entity’s textual representations from the KG and extracting seed entities with surrounding subgraphs as dialogue context. B) Dialogue Generation: employs three LLM-based steps: generating self-contained questions, formulating SPARQL queries from questions and triples, and organizing th… view at source ↗
Figure 3
Figure 3. Examples of questions generated from DBLP by [PITH_FULL_IMAGE:figures/full_fig_p010_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: Comparison of the diversity of question types generated by Maestro and [PITH_FULL_IMAGE:figures/full_fig_p011_4.png]
Figure 5
Figure 5. Figure 5: Comparison of the node-type distribution in the KG, as achieved by [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]
Figure 6
Figure 6. Figure 6: Comparing the performance of Chatty-Gen when using Full and Summarized subgraphs. (A) shows the total number of tokens used to generate the benchmark, and (B) shows the percentage of correctly generated SPARQL queries. to use different models in different stages allows…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

59 extracted references · 29 canonical work pages

  1. [1]

    AI@Meta. 2024. Llama 3 Model Card. (2024). https://github.com/meta-llama/ llama3/blob/main/MODEL_CARD.md

  2. [2]

    Debayan Banerjee, Sushil Awale, Ricardo Usbeck, and Chris Biemann. 2023. DBLP- QuAD: A Question Answering Dataset over the DBLP Scholarly Knowledge Graph. In Proceedings of the International Workshop on Bibliometric-enhanced Information Retrieval, Vol. 3617. 37–51. https://ceur-ws.org/Vol-3617/paper- 05.pdf

  3. [3]

    Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, and et al

    Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, and et al. 2020. Language Models are Few-Shot Learners. In Advances in Neu- ral Information Processing Systems: Annual Conference on Neural Information Processing Systems (NeurIPS). https://proceedings.neurips.cc/paper/2020/hash/ 1457c0d6bfcb4967418bfb8ac142f64a-Abstract.html

  4. [4]

    Jiawei Chen, Hongyu Lin, Xianpei Han, and Le Sun. 2024. Benchmarking Large Language Models in Retrieval-Augmented Generation. InProceedings of the AAAI Conference on Artificial Intelligence. 17754–17762. https://doi.org/10.1609/AAAI. V38I16.29728

  5. [5]

    Chi, Xuezhi Wang, and Denny Zhou

    Xinyun Chen, Ryan A. Chi, Xuezhi Wang, and Denny Zhou. 2024. Premise Order Matters in Reasoning with Large Language Models. In International Conference on Machine Learning, ICML . https://openreview.net/forum?id=4zAHgkiCQg

  6. [6]

    Eunsol Choi, He He, Mohit Iyyer, Mark Yatskar, Wen-tau Yih, and el al. 2018. QuAC: Question Answering in Context. In Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP) . 2174–2184. https: //doi.org/10.18653/V1/D18-1241

  7. [7]

    Philipp Christmann, Rishiraj Saha Roy, Abdalghani Abujabal, Jyotsna Singh, and Gerhard Weikum. 2019. Look before you Hop: Conversational Question Answer- ing over Knowledge Graphs Using Judicious Context Expansion. In Proceedings of the ACM International Conference on Information and Knowledge Management (CIKM). 729–738. https://doi.org/10.1145/3357384.3358016

  8. [8]

    Philipp Christmann, Rishiraj Saha Roy, and Gerhard Weikum. 2022. Conversa- tional Question Answering on Heterogeneous Sources. InSIGIR: The International ACM SIGIR Conference on Research and Development in Information Retrieval. 144–

Show all 59 references
  1. [9]

    Yang Deng, Zifeng Ren, An Zhang, Wenqiang Lei, and Tat-Seng Chua. 2023. Towards Goal-oriented Intelligent Tutoring Systems in Online Education. arXiv preprint arXiv 2312.10053 (2023). https://doi.org/10.48550/arXiv.2312.10053

  2. [10]

    Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. In Proceedings of the Conference of the North American Chapter of the Association for Computational Linguistics: Human Lang...

  3. [11]

    Mohnish Dubey, Debayan Banerjee, Abdelrahman Abdelkawi, and Jens Lehmann

  4. [12]

    Bahare Fatemi, Jonathan Halcrow, and Bryan Perozzi. 2024. Talk like a Graph: Encoding Graphs for Large Language Models. In The International Conference on Learning Representations, ICLR. https://openreview.net/forum?id=IuXR1CCrSi

  5. [13]

    Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, Qianyu Guo, Meng Wang, and Haofen Wang. 2023. Retrieval- Augmented Generation for Large Language Models: A Survey. arXiv preprint arXiv:2312.10997 (2023). https://doi.org/10.48550/ARXIV.2...

  6. [14]

    Google. 2023. https://gemini.google.com

  7. [15]

    Xixin Hu, Yiheng Shu, Xiang Huang, and Yuzhong Qu. 2021. EDG-Based Question Decomposition for Complex Question Answering over Knowledge Bases. In Proceedings of the International Semantic Web Conference, (ISWC) , Vol. 12922. 128–145. https://doi.org/10.1007/978-3-030-88361-4_8

  8. [16]

    Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Deven- dra Singh Chaplot, and et al

    Albert Q. Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Deven- dra Singh Chaplot, and et al. 2023. Mistral 7B. arXiv preprint arXiv:2310.06825 (2023). https://doi.org/10.48550/ARXIV.2310.06825

  9. [17]

    Yohan Jo, Xinyan Zhao, Arijit Biswas, Nikoletta Basiou, Vincent Auvray, and et al. 2023. Multi-User MultiWOZ: Task-Oriented Dialogues among Multiple Users. In Findings of the Association for Computational Linguistics: (EMNLP) . 3237–3269. https://doi.org/10.18653/V1/2023.FINDI...

  10. [18]

    Jaehun Jung, Bokyung Son, and Sungwon Lyu. 2020. AttnIO: Knowledge Graph Exploration with In-and-Out Attention Flow for Knowledge-Grounded Dialogue. In Proceedings of the Conference on Empirical Methods in Natural Language Process- ing (EMNLP). 3484–3497. https://doi.org/10.18...

  11. [19]

    Adam Tauman Kalai and Santosh S. Vempala. 2024. Calibrated Language Models Must Hallucinate. In Proceedings of the Annual ACM Symposium on Theory of Computing, STOC. 160–171. https://doi.org/10.1145/3618260.3649777

  12. [20]

    Gray et al

    Pavan Kapanipathi, Ibrahim Abdelaziz, Srinivas Ravishankar, Salim Roukos, and Alexander G. Gray et al. 2021. Leveraging Abstract Meaning Representation for Knowledge Base Question Answering. In Findings of the Association for Compu- tational Linguistics: (ACL/IJCNLP). 3884–389...

  13. [21]

    Takeshi Kojima, Shixiang Shane Gu, Machel Reid, Yutaka Matsuo, and Yusuke Iwasawa. 2022. Large Language Models are Zero-Shot Reasoners. In Advances in Neural Information Processing Systems : Annual Conference on Neural Information Processing Systems (NeurIPS). http://papers.ni...

  14. [22]

    Seungjun Lee, Yoonna Jang, Chanjun Park, Jungseob Lee, Jaehyung Seo, and et al

  15. [23]

    Jens Lehmann, Robert Isele, Max Jakob, Anja Jentzsch, Dimitris Kontokostas, and et al. 2015. DBpedia - A large-scale, multilingual knowledge base extracted from Wikipedia. Semantic Web 6 (2015), 167–195. https://doi.org/10.3233/SW-140134

  16. [24]

    Zekun Li, Zhiyu Chen, Mike Ross, Patrick Huber, Seungwhan Moon, and et al. 2024. Large Language Models as Zero-shot Dialogue State Tracker through Function Calling. In Proceedings of the Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), A...

  17. [25]

    Jiawei Liu, Chunqiu Steven Xia, Yuyao Wang, and Lingming Zhang. 2023. Is Your Code Generated by ChatGPT Really Correct? Rigorous Evaluation of Large Language Models for Code Generation. In Advances in Neural In- formation Processing Systems: Annual Conference on Neural Informa...

  18. [26]

    Reham Omar, Ishika Dhall, Panos Kalnis, and Essam Mansour. 2023. A Universal Question-Answering Platform for Knowledge Graphs. Proc. ACM Manag. Data 1, 1 (2023), 57:1–57:25. https://doi.org/10.1145/3588911

  19. [27]

    OpenAI. 2022. https://openai.com/blog/chatgpt

  20. [28]

    OpenAI. 2023. GPT-4 Technical Report. arXiv preprint arXiv:2303.08774 (2023). https://doi.org/10.48550/ARXIV.2303.08774

  21. [29]

    OpenAI. 2024. GPT-4o. (2024). https://openai.com/index/hello-gpt-4o/

  22. [30]

    Abdelghny Orogat and Ahmed El-Roby. 2023. Maestro: Automatic Generation of Comprehensive Benchmarks for Question Answering Over Knowledge Graphs. Proceedings of the ACM on Management of Data 1, 2 (2023), 177:1–177:24. https: //doi.org/10.1145/3589322

  23. [31]

    Wain- wright, and et al

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll L. Wain- wright, and et al. 2022. Training language models to follow in- structions with human feedback. In Advances in Neural Information Processing Systems: Annual Conference on Neural Information Processing Systems, ...

  24. [32]

    Aaron Pham, Chaoyu Yang, Sean Sheng, Shenyang Zhao, Sauyon Lee, Bo Jiang, Fog Dong, Xipeng Guan, and Frost Ming. 2023. OpenLLM: Operating LLMs in production. https://github.com/bentoml/OpenLLM

  25. [33]

    Mohammadreza Pourreza and Davood Rafiei. 2023. DIN-SQL: Decomposed In- Context Learning of Text-to-SQL with Self-Correction. In Advances in Neural Information Processing Systems: Annual Conference on Neural Information Pro- cessing Systems (NeurIPS) . http://papers.nips.cc/pap...

  26. [34]

    Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. 2020. Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer.Journal of Machine Learning Research 21 (2020), 140:1–140:67. h...

  27. [35]

    Siva Reddy, Danqi Chen, and Christopher D. Manning. 2019. CoQA: A Conversa- tional Question Answering Challenge. Transactions of the Association for Compu- tational Linguistics 7 (2019), 249–266. https://doi.org/10.1162/TACL_A_00266

  28. [36]

    Baptiste Rozière, Jonas Gehring, Fabian Gloeckle, Sten Sootla, Itai Gat, and et al. 2023. Code Llama: Open Foundation Models for Code. arXiv preprint arXiv:2308.12950 (2023). https://doi.org/10.48550/ARXIV.2308.12950

  29. [37]

    Khapra, Karthik Sankaranarayanan, and Sarath Chandar

    Amrita Saha, Vardaan Pahuja, Mitesh M. Khapra, Karthik Sankaranarayanan, and Sarath Chandar. 2018. Complex Sequential Question Answering: Towards Learning to Converse Over Linked Question Answer Pairs with a Knowledge Graph. In Proceedings of AAAI Conference on Artificial Inte...

  30. [38]

    Kai Sun, Yifan Ethan Xu, Hanwen Zha, Yue Liu, and Xin Luna Dong. 2024. Head-to-Tail: How Knowledgeable are Large Language Models (LLMs)? A.K.A. Will LLMs Replace Knowledge Graphs?. In Proceedings of the Conference of the North American Chapter of the Association for Computatio...

  31. [39]

    Kai Sun, Dian Yu, Jianshu Chen, Dong Yu, Yejin Choi, and et al. 2019. DREAM: A Challenge Dataset and Models for Dialogue-Based Reading Comprehension. Trans. Assoc. Comput. Linguistics 7 (2019), 217–231. https://doi.org/10.1162/ TACL_A_00264

  32. [40]

    Chang-Yu Tai, Ziru Chen, Tianshu Zhang, Xiang Deng, and Huan Sun. 2023. Exploring Chain of Thought Style Prompting for Text-to-SQL. In Proceedings of the Conference on Empirical Methods in Natural Language Processing, EMNLP . 5376–5393. https://doi.org/10.18653/V1/2023.EMNLP-MAIN.327

  33. [41]

    Gemini Team. 2023. Gemini: A Family of Highly Capable Multimodal Models. https://doi.org/10.48550/arXiv.2312.11805

  34. [42]

    Gemini Team. 2024. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of context. https://doi.org/10.48550/arXiv.2403.05530

  35. [43]

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, and et al. 2023. LLaMA: Open and Efficient Foundation Language Models. arXiv preprint arXiv 2302.13971 (2023). https://doi.org/10.48550/ARXIV. 2302.13971

  36. [44]

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, and et al. 2023. Llama 2: Open Foundation and Fine-Tuned Chat Models. arXiv preprint arXiv 2307.09288 (2023). https://doi.org/10.48550/ARXIV.2307.09288

  37. [45]

    Priyansh Trivedi, Gaurav Maheshwari, Mohnish Dubey, and Jens Lehmann. 2017. LC-QuAD: A Corpus for Complex Question Answering over Knowledge Graphs. In Proceedings of the International Semantic Web Conference (ISWC) , Vol. 10588. 210–218. https://doi.org/10.1007/978-3-319-68204-4_22

  38. [46]

    Ricardo Usbeck, Ria Gusmita, Axel-Cyrille Ngomo, and Muhammad Saleem

  39. [47]

    Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, and et al. 2022. Chain-of-Thought Prompting Elicits Reason- ing in Large Language Models. In Advances in Neural Information Pro- cessing Systems: Annual Conference on Neural Information Processing Systems (N...

  40. [48]

    Xiao Yang, Kai Sun, Hao Xin, Yushi Sun, Nikita Bhalla, and et al. 2024. CRAG - Comprehensive RAG Benchmark. arXiv preprint arXiv:2406.04744 (2024). https: //doi.org/10.48550/ARXIV.2406.04744

  41. [49]

    Wen-tau Yih, Matthew Richardson, Christopher Meek, Ming-Wei Chang, and Jina Suh. 2016. The Value of Semantic Parse Labeling for Knowledge Base Question Answering. In Proceedings of the Annual Meeting of the Association for Computational Linguistics, (ACL). https://doi.org/10.1...

  42. [50]

    Diliara Zharikova, Daniel Kornev, Fedor Ignatov, Maxim Talimanchuk, Dmitry Evseev, and et al. 2023. DeepPavlov Dream: Platform for Building Gener- ative AI Assistants. In Proceedings of the Annual Meeting of the Association for Computational Linguistics: System Demonstrations ...

  43. [51]

    Xing, Hao Zhang, Joseph E

    Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric P. Xing, Hao Zhang, Joseph E. Gonzalez, and Ion Stoica. 2023. Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena. InProceedings of the Annual Confere...

  44. [52]

    Li Zhong and Zilong Wang. 2024. Can LLM Replace Stack Overflow? A Study on Robustness and Reliability of Large Language Model Code Generation. In Proceedings of the AAAI Conference on Artificial Intelligence . 21841–21849. https: //doi.org/10.1609/AAAI.V38I19.30185

  45. [53]

    Denny Zhou, Nathanael Schärli, Le Hou, Jason Wei, Nathan Scales, and et al

  46. [54]

    Yongchao Zhou, Andrei Ioan Muresanu, Ziwen Han, Keiran Paster, Silviu Pitis, and et al. 2023. Large Language Models are Human-Level Prompt Engineers. In The International Conference on Learning Representations (ICLR) . https:// openreview.net/pdf?id=92gvk82DE-

  47. [58]

    In The International Conference on Learning Representations, (ICLR)

    Least-to-Most Prompting Enables Complex Reasoning in Large Language Models. In The International Conference on Learning Representations, (ICLR). https: //openreview.net/pdf?id=WZH7099tgfM

  48. [154]

    https://doi.org/10.1145/3477495.3531815

  49. [2018]

    9th Challenge on Question Answering over Linked Data (QALD-9). In Joint proceedings of the Workshop on Semantic Deep Learning (SemDeep-4) and NLIWoD4: Natural Language Interfaces for the Web of Data (NLIWOD-4) and 9th Question Answering over Linked Data challenge (QALD-9) co-l...

  50. [2019]

    In Proceedings of The Semantic Web - (ISWC) , Vol

    LC-QuAD 2.0: A Large Dataset for Complex Question Answering over Wikidata and DBpedia. In Proceedings of The Semantic Web - (ISWC) , Vol. 11779. 69–78. https://doi.org/10.1007/978-3-030-30796-7_5

  51. [2023]

    In Proceedings of the Annual Meeting of the Association for Computational Linguistics: System Demonstrations, (ACL)

    PEEP-Talk: A Situational Dialogue-based Chatbot for English Education. In Proceedings of the Annual Meeting of the Association for Computational Linguistics: System Demonstrations, (ACL). 190–207. https://doi.org/10.18653/V1/2023.ACL- DEMO.18

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.