petter2025 commited on
Commit
7062ccf
Β·
verified Β·
1 Parent(s): 5c1fdf0

Update ui/components.py

Browse files
Files changed (1) hide show
  1. ui/components.py +4 -4
ui/components.py CHANGED
@@ -550,7 +550,7 @@ def create_recall_display() -> gr.HTML:
550
 
551
  <div style="background: #f5f3ff; border-radius: 10px; padding: 20px; margin-bottom: 20px;">
552
  <div style="font-size: 15px; font-weight: 600; color: #5b21b6; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;">
553
- πŸ† RECALL DOMINANCE: Historical Evidence > Predictive Confidence
554
  </div>
555
 
556
  <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px;">
@@ -735,7 +735,7 @@ def create_decision_display() -> gr.HTML:
735
  <div style="font-size: 20px;">⏳</div>
736
  <div style="flex: 1;">
737
  <div style="font-size: 14px; font-weight: 600; color: #92400e; margin-bottom: 3px;">
738
- Observation Gate: ACTIVE (65.0% confidence)
739
  </div>
740
  <div style="font-size: 13px; color: #b45309;">
741
  System will observe for 5 minutes before proceeding to execution
@@ -1123,7 +1123,7 @@ def create_historical_evidence_panel(scenario_data: Dict[str, Any]) -> gr.HTML:
1123
  {failures_html if failures_html else """
1124
  <div style="padding: 20px; background: #fef2f2; border-radius: 10px; text-align: center;">
1125
  <div style="font-size: 32px; color: #dc2626; margin-bottom: 10px;">πŸ“Š</div>
1126
- <div style="font-size: 14px; color: #7f1d1d;">No scaling failure evidence in memory</div>
1127
  </div>
1128
  """}
1129
  </div>
@@ -1135,7 +1135,7 @@ def create_historical_evidence_panel(scenario_data: Dict[str, Any]) -> gr.HTML:
1135
  {successes_html if successes_html else """
1136
  <div style="padding: 20px; background: #f0fdf4; border-radius: 10px; text-align: center;">
1137
  <div style="font-size: 32px; color: #10b981; margin-bottom: 10px;">πŸ“Š</div>
1138
- <div style="font-size: 14px; color: #065f46;">No dampening success evidence in memory</div>
1139
  </div>
1140
  """}
1141
  </div>
 
550
 
551
  <div style="background: #f5f3ff; border-radius: 10px; padding: 20px; margin-bottom: 20px;">
552
  <div style="font-size: 15px; font-weight: 600; color: #5b21b6; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;">
553
+ Recall Dominance: Evidence > Prediction
554
  </div>
555
 
556
  <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px;">
 
735
  <div style="font-size: 20px;">⏳</div>
736
  <div style="flex: 1;">
737
  <div style="font-size: 14px; font-weight: 600; color: #92400e; margin-bottom: 3px;">
738
+ Observation Gate: Awaiting confirmation
739
  </div>
740
  <div style="font-size: 13px; color: #b45309;">
741
  System will observe for 5 minutes before proceeding to execution
 
1123
  {failures_html if failures_html else """
1124
  <div style="padding: 20px; background: #fef2f2; border-radius: 10px; text-align: center;">
1125
  <div style="font-size: 32px; color: #dc2626; margin-bottom: 10px;">πŸ“Š</div>
1126
+ <div style="font-size: 14px; color: #7f1d1d;">Scaling-First Failures (Evidence Present)</div>
1127
  </div>
1128
  """}
1129
  </div>
 
1135
  {successes_html if successes_html else """
1136
  <div style="padding: 20px; background: #f0fdf4; border-radius: 10px; text-align: center;">
1137
  <div style="font-size: 32px; color: #10b981; margin-bottom: 10px;">πŸ“Š</div>
1138
+ <div style="font-size: 14px; color: #065f46;">Dampening-First Successes (Evidence Present)</div>
1139
  </div>
1140
  """}
1141
  </div>