Navigate to Settings -> AI Code Review -> PR Suggestions threshold to configure how many suggestions you receive.You can access this setting directly at: https://app.codeant.ai/settings/prconfsettings
# Current codedef calculate_total(items): total = 0 for item in items: total += item.price return total# Suggested improvementdef calculate_total(items): return sum(item.price for item in items)