Skip to content

Author

Daejin Choi

2 papers indexed here

We haven’t gathered this author’s papers yet. Follow them and we’ll fetch their work.

Not the right person? Other researchers publish under this name.

Open access Aug 2026

Quantifying the Intensity of Online Social Support via Large Language Model–Based Evidence Extraction: Development and Validation Study

Abstract Background Online social support, the interaction among individuals in which one helps another during difficult situations through online platforms such as online forums or social media, has proliferated as a vital tool for personal mental health care. Despite the growing usage and importance of online social support, prior studies have mainly focused on either understanding the characteristics of support seekers or merely identifying types of support, which leaves room for improvement in 2 key areas. First, the intensity of support, indicating the strength of willingness provided by supporters, has been studied little. Second, existing models rely heavily either on handcrafted features or on simple text embeddings of the entire message, which, respectively, fail to capture comprehensive textual features or to provide explainability in classification model decisions. Objective This study proposes a deep learning model that not only predicts the intensity of online social support but also provides human-readable evidence that explains the reasoning behind the decision made by the proposed model. While prior studies mainly concentrated on the task of identifying support types, this research quantifies the strength of support, which may better explain how strongly supporters seek to deliver informational and emotional support. Methods The proposed model categorizes informational and emotional support into 3 levels—strong, moderate, and weak. It collaborates with a large language model (LLM) to extract key sentences or phrases expressing supportive intent and to compute sentiment scores from both the original post and the reply. All extracted texts are then encoded as a vector representation whose elements indicate the presence of text segments corresponding to predefined features. All the computed features are finally fed into the neural network layers for intensity classification. The proposed model was evaluated on 2 independent, human-annotated datasets collected from previous studies, which consist of 1000 and 400 pairs of support-seeking posts and their associated supporting comments, respectively. Results The model achieved superior accuracy compared to baselines on both datasets (0.728/0.694 and 0.709/0.598 for informational support and emotional support, respectively). Through a case study of representative examples, we show that the extracted texts serve as useful evidence explaining the decisions made by the proposed model. For example, explicit intent to support (eg, providing a detailed solution or showing strong empathy) is successfully extracted and used to detect strong support, whereas only indirect support (eg, telling personal stories or offering general advice) is present and can be captured as weak support. Conclusions Through cooperation with LLMs, quantifying the intensity of online social support is highly achievable. In addition, the sentences extracted by LLMs can be used to explain the decisions made by the proposed model.

D. Park, Daejin Choi · 0 citations
Preprint Aug 2026

LLM within MCP Matters: Measuring Inefficient Resource Utilization Driven by LLMs

The Model Context Protocol (MCP) standardizes how servers expose data and tools to Large Language Models (LLMs). A common server design embeds frequently used reference data, such as identifier lookup tables, directly in the server instructions: the system-prompt text a server hands to the host application. When a query concerns an entry of the embedded table, the model can act on it immediately instead of re-discovering the same information through a search tool. We test whether client LLMs actually consume such instruction-embedded data, reporting a 54,000-trial study across 24 LLMs (9 Claude, 6 Gemini, 9 GPT) on a production legal-information MCP server. A diagnostic condition that removes the competing search tool shows that failures are dominated by behavioral preference rather than missing capability. With search unavailable, 23 of 24 models read the embedded data reliably (hit ratio at least 98%); with a search tool merely present, 9 models drop below 15%. A 2^3 factorial analysis of three instruction-level interventions reveals strong interaction effects: combining all three restores at least 86% for 20 of 24 models, but individual interventions can backfire for specific model families. Per-server prompt engineering is therefore a workaround rather than a fix; we argue that MCP host applications should provide an explicit mechanism that places server instructions ahead of tool selection in the client LLM's deliberation.

Minhan Cho, Soyoung Park, Kihyeon Jeong et al. · 0 citations