Evaluating AI-Assisted Code Review
Based on the proposal described in the case study, evaluate the plan to integrate the AI-powered tool. Identify one primary advantage and one significant potential risk of this approach, providing a brief justification for each.
0
1
Tags
Ch.2 Generative Models - Foundations of Large Language Models
Foundations of Large Language Models
Foundations of Large Language Models Course
Computing Sciences
Evaluation in Bloom's Taxonomy
Cognitive Psychology
Psychology
Social Science
Empirical Science
Science
Related
A developer is debugging a Python function that is supposed to calculate the average of a list of numbers but is returning incorrect values. They input the code below into a large language model for assistance.
def calculate_average(numbers): if not numbers: return 0 total = sum(numbers) average = total / (len(numbers) - 1) return averageWhich of the following responses from the model demonstrates the most accurate and helpful analysis of the error in the code?
Evaluating AI-Assisted Code Review
Differentiating LLM Error Correction Approaches