REVIEW 5 major objections 6 minor 47 references
GAP: Graph-Assisted Prompts for Dialogue-based Medication Recommendation
T0 review · 5 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Graph-assisted prompts lift LLM medication-recommendation accuracy by encoding the patient's dialogue as an explicit graph, then querying external knowledge along physician-defined paths.
desk verdict GAP is a promising integration of graph-construction over LLM extraction with KG/LLM/internet prompts for medication recommendation, but the unevaluated extraction of pregnancy-related states is a load-bearing gap that blocks acceptance as-is. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The patient-centric graph $G_p$: a graph whose root is a patient node, with edges to normalized medical concepts (disease, symptom, medication) and directed edges from each concept to its slot-value states (e.g., treatment effective, past medical history). It is constructed from LLM-extracted concepts and states across dialogue turns, and it is then joined with an external medical knowledge graph to form a neighborhood graph $N_{G_p}$. From this structure GAP generates neighborhood prompts (top-1 relation-selected facts from $N_{G_p}$) and path-based prompts (paths matched against pre-defined medical schemas, converted into queries for KG verification, LLM reasoning, and Internet search). The graph and prompts are concatenated with the dialogue history as the final LLM input.
What would settle it
Run the extraction step alone on the DialMed dialogues and compare its concept and state recall against a clinician-verified gold set, especially for states such as pregnancy, allergy history, and past medication use. If extraction recall is substantially below 1.0, or if a dialogue whose gold recommendation changes with the state 'pregnant' produces the same graph with and without that state, then GAP's safety advantage would fail exactly where the paper claims it.
Extended reading notes
Core claim
The central claim is that dialogue-based medication recommendation improves when the LLM is prompted not only with the raw dialogue but with a patient-centric graph built from extracted medical concepts (diseases, symptoms, medications) and their attributed states (pregnancy, duration, past medical history), plus two kinds of derived prompts: neighborhood prompts that pull nearby facts from an external medical knowledge graph, and path-based prompts that query the knowledge graph, the LLM itself, and the Internet along physician-defined schemas. GAP reports that this combination outperforms existing LLM-based recommendation methods on the DialMed benchmark with Jaccard 39.28 and F1 54.27, and improves diagnostic interviewing information density (0.19) and score (0.63). The paper presents this as evidence that explicit graph memory plus multi-source retrieval can reduce non-factual and contraindicated medication responses.
Load-bearing premise
The load-bearing premise is that the LLM extraction step catches all medically relevant concepts and states in the dialogue, since the paper never measures extraction accuracy and a missed state like pregnancy drops out of the graph entirely.
Editorial extensions
If this is right
- If GAP's gains hold, any black-box LLM can be turned into a more reliable recommender by adding a dialogue-derived graph plus retrieval prompts, with no retraining or parameter updates.
- Ablation results show that both prompt types matter: removing neighborhood prompts drops F1 by about 19%, and removing path-based prompts drops F1 by about 11%, so the retrieval design carries much of the benefit.
- The path schema is modular: the paper notes it can be re-targeted from acquiring treatments to suitable food, medical tests, or lifestyle advice, so the same architecture extends to other dialogue-based health services.
- Because GAP is orthogonal to training-time methods, it can be stacked on top of fine-tuned medical LLMs and chain-of-thought prompting, potentially compounding their gains.
Reading between the lines
- The safety claim rests entirely on the LLM extraction step: the paper never measures extraction accuracy, so if a state like 'pregnant' is missed, the graph omits it and a contraindicated drug can still be recommended; a testable extension is to measure concept and state extraction recall separately and to inject a global state summary from an independent extractor.
- The graph is a lossy textual summary of the dialogue; replacing the linearized triple string with a graph neural network, or storing uncertainty about extracted states, could improve robustness to extraction noise.
- Because results are reported only on a Chinese dialogue dataset with a specific set of Chinese medical knowledge sources, the framework's portability to English sources and other knowledge graphs is open; a replication with English KGs would test whether the benefit is language- or KG-dependent.
- The diagnostic-interviewing gain is a single aggregate score; decomposing it into aspects and information catches would show whether GAP's improvement comes from asking more complete questions or from eliciting more key items from the simulated patient.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes GAP, a framework for dialogue-based medication recommendation. GAP extracts medical concepts and their states from a dialogue using LLM-based two-stage extraction, builds a patient-centric graph, and generates neighborhood prompts and path-based prompts by querying external knowledge sources (CMeKG, Disease-KB, LLM reasoning, and Internet search). The framework is evaluated on the DialMed medication recommendation dataset and on a diagnostic interviewing task using an LLM-as-Patients simulator, reporting Jaccard/F1 improvements over LLM baselines and a diagnostic score of 0.63. The paper includes ablations showing the contribution of each prompt type and an error analysis.
Significance. If the results hold, GAP provides a practical plug-and-play method for grounding LLM-based medication recommendations in an explicit patient-specific representation, with consistent gains over KG-RAG and few-shot CoT prompting on DialMed, and it demonstrates a promising direction for integrating structured dialogue memory with heterogeneous knowledge sources. The ablation study is well-designed and shows clear contributions from both neighborhood and path-based prompts. The main contributions are the patient-centric graph construction and the multi-source prompt generation. However, the central mechanism depends on upstream extraction components that are not specified or evaluated, and the reported configuration contains a direct inconsistency about the underlying LLM, so the current evidence is insufficient to support the paper's safety-related claims.
major comments (5)
- [§3.2, Appendix A.1, Table 5] The extraction equations (1)-(2) and the prompts in Tables 4-5 cover medical concepts and their states, but the patient-characteristic extraction (gender, age, blood pressure, pregnancy) that Appendix A.1 lists as part of the patient-centric graph is never specified with a prompt, an equation, or an evaluation. The motivating safety example in Figure 1 and the path-based prompts in Figure 3 depend on detecting pregnancy correctly; a missed pregnancy directly contaminates the graph, neighborhood prompts, and path-based prompts. The paper reports no extraction precision, recall, or F1 on DialMed or any corpus, so the mechanism claimed to reduce unsafe recommendations is unverified.
- [§4.1, §4.2, Appendix A.3] The foundation LLM is inconsistent. Section 4.1 states 'We use DeepSeek-V3 [4] as the foundation LLM' and Section 4.2 says DeepSeek-V3 is utilized for extraction and prompt generation, while Appendix A.3 states 'We use ChatGPT-3.5-Turbo (version 1106) for the experiments.' This is a direct contradiction that affects the reproducibility and interpretation of all reported results; the authors must clarify which model was used for which component and reconcile the two statements.
- [Tables 1 and 3] The paper reports means and standard deviations over five runs but no statistical significance tests (e.g., paired bootstrap or t-test). The central claim that 'GAP outperforms other LLM-based baselines on all department cases' (Section 4.3) requires statistical validation, especially for comparisons where the gaps are smaller (e.g., Respiratory Jaccard: GAP 29.33 vs. KG-RAG 27.48). Please report significance tests or confidence intervals.
- [Abstract, §4.3] The abstract claims that GAP 'retrieving information from multiple sources to reduce the non-factual responses.' However, the evaluation only measures medication-recommendation accuracy (Jaccard/F1) and a diagnostic score; it does not measure factual correctness or hallucination in the generated text. The error analysis (Figure 4) is conducted on CoT errors, not on GAP errors. Thus, the specific benefit of 'non-factual' reduction is not demonstrated; please provide direct evidence or temper the claim.
- [§3.3] The linking of extracted mentions to KG entities is described as 'simple linking methods (e.g., edit distance, synonym list)' but its accuracy is never measured. Since neighborhood prompts are retrieved via this linking, incorrect normalization will propagate to the retrieved knowledge. Please evaluate the linking component or discuss its failure modes in the context of the safety claims.
minor comments (6)
- [§4.2] The sentence 'The context sliding window size of extraction is set to 4 (i.e., k = 1 in Equation 2), and set to ∞ in diagnostic task and the recommendation task, respectively' is ambiguous; please clarify which value applies to which task and how the window size relates to k.
- [§4.1, Table 2] The diagnostic evaluation relies on the authors' own LLM-as-Patients framework [16] and LLM-based scoring; please discuss the potential for self-evaluation bias and provide details on the agreement of the five LLM evaluators.
- [§4.3] The error analysis in Figure 4 is conducted on CoT errors; an error analysis of GAP itself would help identify remaining failure modes for this framework.
- [Table 7] The prompt in Table 7 uses the term 'Respirator' for the department; this should be 'Respiratory'.
- [§3.4] The hyperparameters k1, k2, and the context window size are set heuristically; a sensitivity analysis would strengthen the robustness of the reported results.
- [Appendix A.2] The path schema S is said to be defined by medical professionals, but no details about the panel, their instructions, or inter-annotator agreement are provided; please add these details.
Circularity Check
Minor self-citation in the diagnostic-interviewing evaluation; the core DialMed medication-recommendation result is externally benchmarked and not circular.
-
self citation load bearing
[Section 4.1, Datasets / Evaluation metrics (diagnostic task), and Table 2]
"LLM as Patients [16] is a novel method to evaluate diagnostic interviewing abilities of MDS... For the diagnostic task, we follow the setting of [16] by adopting the weighted coverage rate of Aspects and Information in the examination checklist to obtain the score of diagnostic process... the scores come from the ensemble of 5 different LLM evaluators."
Reference [16] (Li, Zeng, Zhong, Zhang, Zhang, Zou) is the authors' own prior work, with overlap (Zhong, Li, Zou) with the present paper. The claimed diagnostic improvement (GAP 0.63 vs ChatGPT 0.51) is measured entirely within that self-defined LLM-as-Patients protocol and by LLM evaluators, so the secondary diagnostic claim rests on a self-citation rather than on an external benchmark. This is not a construction-level circularity (no fitted value is reused as the target), and it does not bear on the DialMed medication-recommendation result, which uses an external dataset and ground-truth medication sets.
full rationale
The central DialMed derivation is self-contained: GAP extracts concepts and slot-value states with LLM calls (Eqs. 1-2), builds a patient-centric graph, adds KG/LLM/Internet knowledge via neighborhood and path prompts, and generates a recommendation (Eq. 6). No parameter is fitted to DialMed labels and the recommendation targets are not fed into the extraction or prompt modules, so the Jaccard/F1 gains are not forced by construction. The ablation (Table 3) shows the prompts contribute beyond the graph, and the comparison is against an external benchmark. The only circularity-adjacent element is the diagnostic-interviewing experiment: it uses the authors' own LLM-as-Patients framework and LLM evaluators from [16], which is a self-citation and self-evaluation for that secondary claim. Because that claim is exploratory and not the central benchmark, I rate this as a minor self-citation issue (2), not a partial or full circularity. The inconsistent LLM identity (DeepSeek-V3 in Sec. 4.2 vs ChatGPT-3.5-Turbo in App. A.3) is a correctness/reproducibility concern, not a circularity.
Assumptions & free parameters
free parameters (6)
- context window size k =
k = 1 (window 4) / infinity
- max neighborhood prompts k1 =
3
- max path-based prompts k2 =
3
- LLM temperature =
0.2
- ICL demonstrations per stage =
3
- evaluation runs averaged =
5
assumptions (6)
- domain assumption The LLM used for extraction returns correct medical concept mentions and slot-value states in Eqs. (1)-(2).
- domain assumption External medical KGs (CMeKG, Disease-KB) and supplementary knowledge contain correct and current contraindication and treatment facts.
- ad hoc to paper The pre-defined medical path schema S (Appendix A.2) captures the clinically relevant decision paths for medication selection.
- domain assumption Internet search in Section 3.4 returns relevant and accurate medical information for generated queries.
- domain assumption Providing the entire candidate medication list to the LLM is a valid proxy for dialogue-based recommendation.
- domain assumption The LLM-as-Patients diagnostic evaluation from [16] is a valid measure of diagnostic ability.
invented entities (1)
-
Patient-centric dialogue graph G_p
Cite this review
Pith. "Pith review of GAP: Graph-Assisted Prompts for Dialogue-based Medication Recommendation." pith.science (2026). https://pith.science/paper/RRGQMYVS
@misc{pith2026250512888,
author = {Pith},
title = {Pith review of: GAP: Graph-Assisted Prompts for Dialogue-based Medication Recommendation},
year = {2026},
howpublished = {\url{https://pith.science/paper/RRGQMYVS}},
note = {Machine review of arXiv:2505.12888}
}
read the original abstract
Medication recommendations have become an important task in the healthcare domain, especially in measuring the accuracy and safety of medical dialogue systems (MDS). Different from the recommendation task based on electronic health records (EHRs), dialogue-based medication recommendations require research on the interaction details between patients and doctors, which is crucial but may not exist in EHRs. Recent advancements in large language models (LLM) have extended the medical dialogue domain. These LLMs can interpret patients' intent and provide medical suggestions including medication recommendations, but some challenges are still worth attention. During a multi-turn dialogue, LLMs may ignore the fine-grained medical information or connections across the dialogue turns, which is vital for providing accurate suggestions. Besides, LLMs may generate non-factual responses when there is a lack of domain-specific knowledge, which is more risky in the medical domain. To address these challenges, we propose a \textbf{G}raph-\textbf{A}ssisted \textbf{P}rompts (\textbf{GAP}) framework for dialogue-based medication recommendation. It extracts medical concepts and corresponding states from dialogue to construct an explicitly patient-centric graph, which can describe the neglected but important information. Further, combined with external medical knowledge graphs, GAP can generate abundant queries and prompts, thus retrieving information from multiple sources to reduce the non-factual responses. We evaluate GAP on a dialogue-based medication recommendation dataset and further explore its potential in a more difficult scenario, dynamically diagnostic interviewing. Extensive experiments demonstrate its competitive performance when compared with strong baselines.
Figures
Reference graph
Works this paper leans on
-
[4]
DeepSeek-AI: Deepseek-v3 technical report (2025)
work page 2025
-
[1]
Baidu: Ernie bot: Baidu’s knowledge-enhanced large language model built on full ai stack technology (2023)
work page 2023
-
[2]
Bao, Z., Chen, W., Xiao, S., Ren, K., Wu, J., Zhong, C., Peng, J., Huang, X., Wei, Z.: Disc-medllm: Bridging general large language mod- els and real-world medical consultation. CoRR abs/2308.14346 (2023). https://doi.org/10.48550/ARXIV.2308.14346
-
[3]
Chen, Y., Wang, Z., Xing, X., Zheng, H., Xu, Z., Fang, K., Wang, J., Li, S., Wu, J., Liu, Q., Xu, X.: Bianque: Balancing the questioning and suggestion ability of health llms with multi-turn health conversations polished by chatgpt. CoRR abs/2310.15896 (2023). https://doi.org/10.48550/ARXIV.2310.15896
-
[5]
Dou, C., Jin, Z., Jiao, W., Zhao, H., Zhao, Y., Tao, Z.: Plugmed: Improving speci- ficity in patient-centered medical dialogue generation using in-context learning. In: Findings of EMNLP. pp. 5050–5066 (2023)
work page 2023
-
[6]
Gao, L., Zhang, X., Wu, X., Ge, S., Zheng, Y.: Dialogue medical information extraction with medical-item graph and dialogue-status en- riched representation. In: Findings of EMNLP. pp. 13311–13321 (2023). https://doi.org/10.18653/V1/2023.FINDINGS-EMNLP.888
-
[7]
Gao, Y., Xiong, Y., Gao, X., Jia, K., Pan, J., Bi, Y., Dai, Y., Sun, J., Guo, Q., Wang, M., Wang, H.: Retrieval-augmented genera- tion for large language models: A survey. CoRR abs/2312.10997 (2023). https://doi.org/10.48550/ARXIV.2312.10997
-
[8]
Guo, Q., Cao, S., Yi, Z.: A medical question answering system using large lan- guage models and knowledge graphs. Int. J. Intell. Syst.37(11), 8548–8564 (2022). https://doi.org/10.1002/INT.22955
Show all 47 references
- [9]
-
[10]
In: ICCL
He, Z., Han, Y., Ouyang, Z., Gao, W., Chen, H., Xu, G., Wu, J.: DialMed: A dataset for dialogue-based medication recommendation. In: ICCL. pp. 721–733. Gyeongju, Republic of Korea (2022)
2022
-
[11]
CoRR abs/2401.04088 (2024)
Jiang, A.Q., Sablayrolles, A., Roux, A., Mensch, A., Savary, B., Bamford, C., Chaplot, D.S., de Las Casas, D., Hanna, E.B., Bressand, F., Lengyel, G., Bour, G., Lample, G., Lavaud, L.R., Saulnier, L., Lachaux, M., Stock, P., Subrama- nian, S., Yang, S., Antoniak, S., Scao, T.L...
-
[12]
CoRRabs/2312.15883 (2023)
Jiang, X., Zhang, R., Xu, Y., Qiu, R., Fang, Y., Wang, Z., Tang, J., Ding, H., Chu, X., Zhao, J., Wang, Y.: Think and retrieval: A hypothesis knowledge graph enhanced medical large language models. CoRRabs/2312.15883 (2023). https://doi.org/10.48550/ARXIV.2312.15883
-
[13]
In: ICML
Kandpal, N., Deng, H., Roberts, A., Wallace, E., Raffel, C.: Large language models struggle to learn long-tail knowledge. In: ICML. Proceedings of Machine Learning Research, vol. 202, pp. 15696–15707 (2023)
2023
-
[14]
In: SIGKDD
Le, H., Tran, T., Venkatesh, S.: Dual memory neural com- puter for asynchronous two-view sequential learning. In: SIGKDD. pp. 1637–1645 (2018). https://doi.org/10.1145/3219819.3219981, https://doi.org/10.1145/3219819.3219981 Graph-Assisted Prompts for Dialogue-based Medication...
2018
-
[15]
In: NeurIPS (2020)
Lewis, P.S.H., Perez, E., Piktus, A., Petroni, F., Karpukhin, V., Goyal, N., Küttler, H., Lewis, M., Yih, W., Rocktäschel, T., Riedel, S., Kiela, D.: Retrieval-augmented generation for knowledge-intensive NLP tasks. In: NeurIPS (2020)
2020
-
[16]
CoRRabs/2404.13066 (2024)
Li, Y., Zeng, C., Zhong, J., Zhang, R., Zhang, M., Zou, L.: Leveraging large lan- guage model as simulated patients for clinical education. CoRRabs/2404.13066 (2024)
2024 arXiv
- [17]
-
[18]
Liu, S., Wang, X., Zhao, X., Chen, H.: Dkinet: Medication recommendation via domain knowledge informed deep learning (2023)
2023
-
[19]
Luo, J., Ye, M., Xiao, C., Ma, F.: Hitanet: Hierarchical time-aware attention net- works for risk prediction on electronic health records. In: KDD. pp. 647–656 (2020)
2020
-
[20]
In: Findings of EMNLP
Mao, K., Dou, Z., Mo, F., Hou, J., Chen, H., Qian, H.: Large language models know your contextual search intent: A prompting framework for conversational search. In: Findings of EMNLP. pp. 1211–1225 (2023)
2023
-
[21]
OpenAI: Openai: Introducing chatgpt (2022), https://openai.com/blog/chatgpt
2022
-
[22]
In: Findings of EMNLP
Press, O., Zhang, M., Min, S., Schmidt, L., Smith, N.A., Lewis, M.: Measuring and narrowing the compositionality gap in language models. In: Findings of EMNLP. pp. 5687–5711 (2023). https://doi.org/10.18653/V1/2023.FINDINGS-EMNLP.378
2023 doi
-
[23]
In: AAAI
Shang, J., Xiao, C., Ma, T., Li, H., Sun, J.: Gamenet: Graph aug- mented memory networks for recommending medication combination. In: AAAI. pp. 1126–1133 (2019). https://doi.org/10.1609/AAAI.V33I01.33011126, https://doi.org/10.1609/aaai.v33i01.33011126
2019 doi
-
[24]
In: AAAI
Shen, W., Chen, J., Quan, X., Xie, Z.: Dialogxl: All-in-one xlnet for multi-party conversation emotion recognition. In: AAAI. pp. 13789–13797 (2021)
2021
-
[25]
In: AAAI
Shi, X., Hu, H., Che, W., Sun, Z., Liu, T., Huang, J.: Understanding medical con- versations with scattered keyword attention and weak supervision from responses. In: AAAI. pp. 8838–8845 (2020)
2020
-
[26]
CoRR abs/2405.10630 (2024)
Shi, X., Liu, Z., Du, L., Wang, Y., Wang, H., Guo, Y., Ruan, T., Xu, J., Zhang, S.: Medical dialogue: A survey of categories, methods, evaluation and challenges. CoRR abs/2405.10630 (2024)
2024 arXiv
-
[27]
CoRR abs/2311.17330 (2023)
Soman, K., Rose, P.W., Morris, J.H., Akbas, R.E., Smith, B., Peetoom, B., Villouta-Reyes, C., Cerono, G., Shi, Y., Rizk-Jackson, A., Israni, S., Nel- son, C.A., Huang, S., Baranzini, S.E.: Biomedical knowledge graph-enhanced prompt generation for large language models. CoRR ab...
- [28]
-
[29]
Valizadeh, M., Parde, N.: The AI doctor is in: A survey of task-oriented dia- logue systems for healthcare applications. In: ACL. pp. 6638–6660. Dublin, Ireland (2022). https://doi.org/10.18653/v1/2022.acl-long.458
2022 doi
- [30]
- [31]
-
[32]
In: NeurIPS (2022)
Wei, J., Wang, X., Schuurmans, D., Bosma, M., Ichter, B., Xia, F., Chi, E.H., Le, Q.V., Zhou, D.: Chain-of-thought prompting elicits reasoning in large language models. In: NeurIPS (2022)
2022
- [33]
- [34]
-
[35]
In: EMNLP
Xu, C., Guo, D., Duan, N., McAuley, J.J.: Baize: An open-source chat model with parameter-efficient tuning on self-chat data. In: EMNLP. pp. 6268–6278 (2023)
2023
- [36]
-
[37]
In: Findings of ACL
Xu, K., Hou, W., Cheng, Y., Wang, J., Li, W.: Medical dialogue gener- ation via dual flow modeling. In: Findings of ACL. pp. 6771–6784 (2023). https://doi.org/10.18653/V1/2023.FINDINGS-ACL.423
2023 doi
-
[38]
In: CIKM
Ye, M., Luo, J., Xiao, C., Ma, F.: LSAN: modeling long-term dependencies and short-term correlations with hierarchical attention for risk prediction. In: CIKM. pp. 1753–1762 (2020). https://doi.org/10.1145/3340531.3411864
2020
- [39]
- [40]
-
[41]
In: EMNLP
Zeng, G., Yang, W., Ju, Z., Yang, Y., Wang, S., Zhang, R., Zhou, M., Zeng, J., Dong, X., Zhang, R., Fang, H., Zhu, P., Chen, S., Xie, P.: MedDialog: Large-scale medical dialogue datasets. In: EMNLP. pp. 9241–9250. Online (2020). https://doi.org/10.18653/v1/2020.emnlp-main.743
2020 doi
-
[42]
In: Findings of EMNLP
Zhang, H., Chen, J., Jiang, F., Yu, F., Chen, Z., Chen, G., Li, J., Wu, X., Zhang, Z., Xiao, Q., Wan, X., Wang, B., Li, H.: Huatuogpt, towards taming language model to be a doctor. In: Findings of EMNLP. pp. 10859–10885 (2023)
2023
-
[43]
In: SIGKDD
Zhang, Y., Chen, R., Tang, J., Stewart, W.F., Sun, J.: LEAP: learning to prescribe effective and safe treatment combinations for multimorbidity. In: SIGKDD. pp. 1315–1324 (2017). https://doi.org/10.1145/3097983.3098109, https://doi.org/10.1145/3097983.3098109
2017
-
[44]
In: HPCC
Zhao, B., Jiang, Z., Zhang, J., Ma, F., Li, J.: Medical dialogue generation via extracting heterogenous information. In: HPCC. pp. 194–201 (2022). https://doi.org/10.1109/HPCC-DSS-SMARTCITY- DEPENDSYS57074.2022.00058
2022
-
[45]
Zhao, Y., Li, Y., Wu, Y., Hu, B., Chen, Q., Wang, X., Ding, Y., Zhang, M.: Medical dialogue response generation with pivotal information recalling. In: KDD. pp. 4763–4771 (2022). https://doi.org/10.1145/3534678.3542674
2022
- [46]
-
[47]
patient claims positive
Zhu, Y., Moniz, J.R.A., Bhargava, S., Lu, J., Piraviperumal, D., Li, S., Zhang, Y., Yu, H., Tseng, B.: Can large language models understand context? In: Findings of EACL. pp. 2004–2018 (2024) Graph-Assisted Prompts for Dialogue-based Medication Recommendation 17 A Appendix A.1...
2024
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.