QoL and metric value inverter

This commit is contained in:
2026-03-04 11:10:45 -06:00
parent 8dfe3607b1
commit f57ac7d6dc
30 changed files with 556 additions and 118 deletions

View File

@@ -21,8 +21,8 @@ class MockLLMProvider(LLMProvider):
def review_plausibility(
self, combination_description: str, scores: dict[str, float]
) -> str:
) -> tuple[str, bool]:
avg = sum(scores.values()) / max(len(scores), 1)
if avg > 0.5:
return "This concept appears plausible and worth further investigation."
return "This concept has significant feasibility challenges."
return ("This concept appears plausible and worth further investigation.", True)
return ("This concept has significant feasibility challenges.", False)