feat: updated argument meter

This commit is contained in:
Nick 2025-01-04 18:10:56 -06:00
parent 7f509d0572
commit b16f0d2e86

View file

@ -385,52 +385,52 @@ strengthMaker shared =
_ ->
if not shared.isNavbarExpanded then
[ tooltip IsRight
"This represents my confidence that the argument is sound."
[ tooltip IsLeft
"This represents how dope I think the inference/reductio is."
]
else
[]
)
<|
detailTitleMaker TextLightOrange "Confidence:"
detailTitleMaker TextLightOrange "Banger Rating:"
getConfidenceTooltip : Int -> String
getConfidenceTooltip num =
case num of
0 ->
"Extremely low. Speculative reasoning."
"Extremely low. Highly speculative."
1 ->
"Very low. Extremely weak reasoning."
"Very low. Almost entirely uncertain."
2 ->
"Low. Weak reasoning."
"Low. Highly uncertain."
3 ->
"Kinda low. Somewhat weak reasoning."
"Kinda low. More uncertain than not."
4 ->
"Below average. More weak than strong."
"Below average. Some significant doubts."
5 ->
"Moderate. OK reasoning."
"Moderate. Equal mix of certainty and doubt."
6 ->
"Above average. More strong than weak."
"Above average. More certain than not."
7 ->
"Kinda high. Somewhat strong reasoning."
"Kinda high. Fairly confident."
8 ->
"High. Robust reasoning."
"High. Strongly confident."
9 ->
"Very high. Extremely robust reasoning."
"Very high. Almost entirely certain."
10 ->
"Extremely high. Air tight reasoning."
"Extremely high. Completely certain."
_ ->
"Confidence level out of expected range."