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