PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #340
You deployed a conversational application that uses a large language model (LLM). The application has 1,000 users. You collect user feedback about the verbosity and accuracy of the model 's…
The correct answer is C. Ask users to indicate all scenarios where they expect concise responses versus verbose. The responses are already factually correct - only verbosity is mismatched. The scalable fix is to gather user-defined scenarios specifying when concise versus verbose responses are expected, then encode those rules into the model's system prompt or prompt templates that are…
Question
Options
- AImplement a keyword-based routing layer. If the user's input contains the words "detailed" or
- BAsk users to provide examples of responses with the appropriate verbosity as a list of question
- CAsk users to indicate all scenarios where they expect concise responses versus verbose
- DExperiment with other proprietary and open-source LLMs. Perform A/B testing by setting each
How the community answered
(32 responses)- A13% (4)
- B6% (2)
- C78% (25)
- D3% (1)
Explanation
The responses are already factually correct - only verbosity is mismatched. The scalable fix is to gather user-defined scenarios specifying when concise versus verbose responses are expected, then encode those rules into the model's system prompt or prompt templates that are selected dynamically based on question type. This leverages prompt engineering rather than retraining or replacing the model, and scales to 1,000+ users without per-user customization. Option A (keyword routing on 'detailed'/'concise') is brittle - it requires users to always include specific keywords. Option B (few-shot examples from users) is operationally heavy to collect and maintain at scale. Option D (A/B test other LLMs) replaces the model entirely, which does not address the root cause - the verbosity issue is about prompting strategy, not model capability.
Topics
Community Discussion
No community discussion yet for this question.